diff --git a/CtsTestCaseList.mk b/CtsTestCaseList.mk index a72fef68c66fb1b0fb4cd60df75ea5af6b466e2b..9d81932e50eaa8dddd6a2f34725aca067757f530 100644 --- a/CtsTestCaseList.mk +++ b/CtsTestCaseList.mk @@ -37,11 +37,11 @@ cts_support_packages := \ CtsDeviceTaskswitchingAppB \ CtsDeviceTaskswitchingControl \ CtsDeviceUi \ - CtsHoloDeviceApp \ CtsMonkeyApp \ CtsMonkeyApp2 \ CtsSomeAccessibilityServices \ CtsTestStubs \ + CtsThemeDeviceApp \ SignatureTest \ TestDeviceSetup \ CtsUiAutomatorApp \ @@ -88,7 +88,6 @@ cts_test_packages := \ CtsGraphicsTestCases \ CtsGraphics2TestCases \ CtsHardwareTestCases \ - CtsHoloTestCases \ CtsJniTestCases \ CtsKeystoreTestCases \ CtsLocationTestCases \ @@ -133,10 +132,10 @@ CTS_COVERAGE_TEST_CASE_LIST := \ 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 4f0c3e8e418ef9f000ed92bbf987dcfab508cf15..0000000000000000000000000000000000000000 --- 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 d390418d47421a002b593d745a2607c8055758d6..0000000000000000000000000000000000000000 --- 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 d27c2660a6bdd80a281a6e5bab614bfd3154d215..0000000000000000000000000000000000000000 --- a/hostsidetests/holo/app/AndroidManifest.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - 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 1b74e014d63029829ee78b53338fb4150ec80d88..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/app/res/drawable-land-400dpi/display_info.png and /dev/null 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 a665018f78f0b5955f516b613ac660f0d0985bd1..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/app/res/drawable-land-hdpi/display_info.png and /dev/null 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 64c8f3a8ce3dfd39ef8a8f280f85341915532b1f..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/app/res/drawable-land-ldpi/display_info.png and /dev/null 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 f3e676560837fe24da26a3f821aad8eab29d6842..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/app/res/drawable-land-mdpi/display_info.png and /dev/null 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 99de970133ca2b042515a172ed0c3141361cea2b..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/app/res/drawable-land-tvdpi/display_info.png and /dev/null 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 4c0c2b41e39fccf76939bd3178663824f9412f82..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/app/res/drawable-land-xhdpi/display_info.png and /dev/null 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 c6f7fd84f28248ee436d1e8c642fb0d4a839b945..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/app/res/drawable-land-xxhdpi/display_info.png and /dev/null 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 7ad9b5294f56f52cca53035fc73e20d677ce7747..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/app/res/drawable-land-xxxhdpi/display_info.png and /dev/null differ diff --git a/hostsidetests/holo/app/res/layout/checkbox.xml b/hostsidetests/holo/app/res/layout/checkbox.xml deleted file mode 100644 index 8eeac39a18bb898bcc5a52ec67b48752e9e102fd..0000000000000000000000000000000000000000 --- a/hostsidetests/holo/app/res/layout/checkbox.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - diff --git a/hostsidetests/holo/app/res/layout/chronometer.xml b/hostsidetests/holo/app/res/layout/chronometer.xml deleted file mode 100644 index c4ad8d30897aa60ae54e2ef96277c15b5206ecaa..0000000000000000000000000000000000000000 --- a/hostsidetests/holo/app/res/layout/chronometer.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - 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 0ae6953a0d42a888bf8fbd8878df44732f275b11..0000000000000000000000000000000000000000 --- a/hostsidetests/holo/app/res/layout/holo_test.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - diff --git a/hostsidetests/holo/app/res/values/strings.xml b/hostsidetests/holo/app/res/values/strings.xml deleted file mode 100644 index 02b40801274627b3a698c9384193a8f2d0a89203..0000000000000000000000000000000000000000 --- a/hostsidetests/holo/app/res/values/strings.xml +++ /dev/null @@ -1,79 +0,0 @@ - - - - Holo Test Utilities - - Display Info - Density DPI: %1$d\nDensity Bucket: %2$s\nWidth DP: %3$d\nHeight DP: %4$d - - Button - CheckBox - Chronometer - DatePicker - EditText - ProgressBar - ProgressBar Small - ProgressBar Large - ProgressBar Horizontal 0% - ProgressBar Horizontal 50% - ProgressBar Horizontal 100% - RadioButton - RadioButton Checked - RadioGroup Horizontal - RadioGroup Vertical - RatingBar 0 Stars - RatingBar 2.5 Stars - RatingBar 5 Stars - RatingBar 0 Stars Pressed - RatingBar 2.5 Stars Pressed - RatingBar 5 Stars Pressed - SearchView - SearchView Query - SearchView Query Hint - SeekBar 0% - SeekBar 50% - SeekBar 100% - Spinner - Switch - Switch Checked - TabHost - TextView - TimePicker - ToggleButton - ToggleButton Checked - ZoomControls - - AlertDialog One Button - AlertDialog Two Buttons - AlertDialog Three Buttons - AlertDialog List - AlertDialog Single Choice - AlertDialog Multiple Choice - ProgressDialog Spinner - ProgressDialog Horizontal - - Bright Blue Color - Dark Blue Color - Light Blue Color - Dark Green Color - Light Green Color - Dark Orange Color - Light Orange Color - Purple Color - Dark Red Color - Light Red Color - - 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 69c3914937154fb9c16e072862adaee4791e8b96..0000000000000000000000000000000000000000 --- 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 bfaf8655e10041fbaa7a90864276f7a9f864f487..0000000000000000000000000000000000000000 --- 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 { - - @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 dec6ed0bb7d1959fcaf69e6ad359bc8b0c45f23c..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/17/hdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/17/ldpi.zip b/hostsidetests/holo/assets/17/ldpi.zip deleted file mode 100644 index 5b706fcf0fe5aaacbb6c31217e991c1d714dcddd..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/17/ldpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/17/mdpi.zip b/hostsidetests/holo/assets/17/mdpi.zip deleted file mode 100644 index 9390873409e26743737cb4142fee0434b00391d2..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/17/mdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/17/tvdpi.zip b/hostsidetests/holo/assets/17/tvdpi.zip deleted file mode 100644 index 1e2ccc60d93d3776b77b0c84649707200ae09103..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/17/tvdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/17/xhdpi.zip b/hostsidetests/holo/assets/17/xhdpi.zip deleted file mode 100644 index fdf1ae7219c031b04fd765112b40f980241a6455..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/17/xhdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/17/xxhdpi.zip b/hostsidetests/holo/assets/17/xxhdpi.zip deleted file mode 100644 index ab5bc6b9c4bc5a1fadfbfefc47da1f2cd760a5da..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/17/xxhdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/18/hdpi.zip b/hostsidetests/holo/assets/18/hdpi.zip deleted file mode 100644 index 79e045f58086b2b2c3507d8dc5a331b02eac8d48..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/18/hdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/18/ldpi.zip b/hostsidetests/holo/assets/18/ldpi.zip deleted file mode 100644 index 4321274cc20814eecb23ad401d723760d8706019..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/18/ldpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/18/mdpi.zip b/hostsidetests/holo/assets/18/mdpi.zip deleted file mode 100644 index 9872b16b5c8e3263b0754cbb921a7488568f0f42..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/18/mdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/18/tvdpi.zip b/hostsidetests/holo/assets/18/tvdpi.zip deleted file mode 100644 index f18d019e96c2349f888c5f695c31f159b74c4a80..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/18/tvdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/18/xhdpi.zip b/hostsidetests/holo/assets/18/xhdpi.zip deleted file mode 100644 index a1f2c6536707a3c5e6f57e12b52c7ebe582c8d2c..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/18/xhdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/18/xxhdpi.zip b/hostsidetests/holo/assets/18/xxhdpi.zip deleted file mode 100644 index 331baf3a73370455e820b78bfa569cdc4487e3c0..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/18/xxhdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/18/xxxhdpi.zip b/hostsidetests/holo/assets/18/xxxhdpi.zip deleted file mode 100644 index 8fc56ae8979c31187d0767509cecfc1d66b019e6..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/18/xxxhdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/19/400dpi.zip b/hostsidetests/holo/assets/19/400dpi.zip deleted file mode 100644 index bc29da9216055e7f057d895edb1b73b24e011876..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/19/400dpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/19/hdpi.zip b/hostsidetests/holo/assets/19/hdpi.zip deleted file mode 100644 index ecb45e034ce395f8ee2d65c99c4716c9d69c370b..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/19/hdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/19/ldpi.zip b/hostsidetests/holo/assets/19/ldpi.zip deleted file mode 100644 index cd5dee661a7e8e6714c5d4b17c23ae0c5ad9707a..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/19/ldpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/19/mdpi.zip b/hostsidetests/holo/assets/19/mdpi.zip deleted file mode 100644 index 80bb193a78c55dbf4f9b45e1c39bf59cb36fdc8a..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/19/mdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/19/tvdpi.zip b/hostsidetests/holo/assets/19/tvdpi.zip deleted file mode 100644 index 1392010b2f82734b368bcb4716bd46a9bec7dc60..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/19/tvdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/19/xhdpi.zip b/hostsidetests/holo/assets/19/xhdpi.zip deleted file mode 100644 index eb973dabc2b0962d8e714120d52c5983f5818f96..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/19/xhdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/19/xxhdpi.zip b/hostsidetests/holo/assets/19/xxhdpi.zip deleted file mode 100644 index 6f3f01852a07c00d8cc14261bb6fbad695bcd6c6..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/19/xxhdpi.zip and /dev/null differ diff --git a/hostsidetests/holo/assets/19/xxxhdpi.zip b/hostsidetests/holo/assets/19/xxxhdpi.zip deleted file mode 100644 index 1d6b30398a0bdf68c549b00829b9c322a95f2ad9..0000000000000000000000000000000000000000 Binary files a/hostsidetests/holo/assets/19/xxxhdpi.zip and /dev/null differ 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 25d13123d6354308580f6ad442446b594742fbb3..0000000000000000000000000000000000000000 --- 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 mReferences = new HashMap(); - - /** A reference to the build. */ - private CtsBuildHelper mBuild; - - /** A reference to the device under test. */ - private ITestDevice mDevice; - - private ExecutorService mExecutionService; - - private ExecutorCompletionService 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(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 0000000000000000000000000000000000000000..8e283a307468affd3085f10ffa808d361c888ade --- /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 0000000000000000000000000000000000000000..d7ca509bf16921a70d273adf86377f65894527ba --- /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 0000000000000000000000000000000000000000..2f8fb3b69520090c3779c6f32035783759dd912d --- /dev/null +++ b/hostsidetests/theme/app/AndroidManifest.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 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 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 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 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 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 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 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 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/tests/tests/holo/res/layout/calendarview.xml b/hostsidetests/theme/app/res/layout/calendarview.xml similarity index 93% rename from tests/tests/holo/res/layout/calendarview.xml rename to hostsidetests/theme/app/res/layout/calendarview.xml index 9c5f9ef548d96dfc0f0fe2886f49a6b09d9e96d0..130cbae4269660df24a6a9d68f695c0835bc8154 100644 --- a/tests/tests/holo/res/layout/calendarview.xml +++ b/hostsidetests/theme/app/res/layout/calendarview.xml @@ -1,5 +1,5 @@ - + + diff --git a/hostsidetests/theme/app/res/layout/chronometer.xml b/hostsidetests/theme/app/res/layout/chronometer.xml new file mode 100644 index 0000000000000000000000000000000000000000..618de0aaf2a3bf4282819e77acf39fa701235f68 --- /dev/null +++ b/hostsidetests/theme/app/res/layout/chronometer.xml @@ -0,0 +1,19 @@ + + + diff --git a/tests/tests/holo/res/layout/color_blue_bright.xml b/hostsidetests/theme/app/res/layout/color_blue_bright.xml similarity index 93% rename from tests/tests/holo/res/layout/color_blue_bright.xml rename to hostsidetests/theme/app/res/layout/color_blue_bright.xml index aa1f7d04f03d6fb6fe6804f8097d74a67f38b9e6..f407940779a4e4f756d345a9dbb535fe21f701f7 100644 --- a/tests/tests/holo/res/layout/color_blue_bright.xml +++ b/hostsidetests/theme/app/res/layout/color_blue_bright.xml @@ -1,5 +1,5 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/tests/holo/res/layout/empty.xml b/hostsidetests/theme/app/res/layout/empty.xml similarity index 93% rename from tests/tests/holo/res/layout/empty.xml rename to hostsidetests/theme/app/res/layout/empty.xml index 562bf1aed299ee6d1a495ad50b7d0626bb7eccca..a2190e5c211cee99b002005af5c852f0112c7631 100644 --- a/tests/tests/holo/res/layout/empty.xml +++ b/hostsidetests/theme/app/res/layout/empty.xml @@ -1,5 +1,5 @@ - + + + diff --git a/tests/tests/holo/res/layout/progressbar.xml b/hostsidetests/theme/app/res/layout/progressbar.xml similarity index 93% rename from tests/tests/holo/res/layout/progressbar.xml rename to hostsidetests/theme/app/res/layout/progressbar.xml index 0975c8696b647d98c2d370076ca395718627fc15..0a385e9ad5b46d89d28357f9f7c22d91090c9c62 100644 --- a/tests/tests/holo/res/layout/progressbar.xml +++ b/hostsidetests/theme/app/res/layout/progressbar.xml @@ -1,5 +1,5 @@ - - diff --git a/tests/tests/holo/res/layout/seekbar_0.xml b/hostsidetests/theme/app/res/layout/seekbar_0.xml similarity index 93% rename from tests/tests/holo/res/layout/seekbar_0.xml rename to hostsidetests/theme/app/res/layout/seekbar_0.xml index fac24c7427f8a6420cd070789056ffe4159bf4c4..25488be7d06451f74d35a8349b9eff709b3b7768 100644 --- a/tests/tests/holo/res/layout/seekbar_0.xml +++ b/hostsidetests/theme/app/res/layout/seekbar_0.xml @@ -1,5 +1,5 @@ - - diff --git a/tests/tests/holo/res/values/arrays.xml b/hostsidetests/theme/app/res/values/arrays.xml similarity index 93% rename from tests/tests/holo/res/values/arrays.xml rename to hostsidetests/theme/app/res/values/arrays.xml index f6e6c92279de77867c2aa09ef91fa1c015c95438..680395b8189f692f109697ee2446e169cdc7fce5 100644 --- a/tests/tests/holo/res/values/arrays.xml +++ b/hostsidetests/theme/app/res/values/arrays.xml @@ -1,5 +1,5 @@ - + + Holo Test Utilities + + Display Info + Density DPI: %1$d\nDensity Bucket: %2$s\nWidth DP: %3$d\nHeight DP: %4$d + + Button + CheckBox + Chronometer + DatePicker + EditText + ProgressBar + ProgressBar Small + ProgressBar Large + ProgressBar Horizontal 0% + ProgressBar Horizontal 50% + ProgressBar Horizontal 100% + RadioButton + RadioButton Checked + RadioGroup Horizontal + RadioGroup Vertical + RatingBar 0 Stars + RatingBar 2.5 Stars + RatingBar 5 Stars + RatingBar 0 Stars Pressed + RatingBar 2.5 Stars Pressed + RatingBar 5 Stars Pressed + SearchView + SearchView Query + SearchView Query Hint + SeekBar 0% + SeekBar 50% + SeekBar 100% + Spinner + Switch + Switch Checked + TabHost + TextView + TimePicker + ToggleButton + ToggleButton Checked + ZoomControls + + AlertDialog One Button + AlertDialog Two Buttons + AlertDialog Three Buttons + AlertDialog List + AlertDialog Single Choice + AlertDialog Multiple Choice + ProgressDialog Spinner + ProgressDialog Horizontal + + Bright Blue Color + Dark Blue Color + Light Blue Color + Dark Green Color + Light Green Color + Dark Orange Color + Light Orange Color + Purple Color + Dark Red Color + Light Red Color + + Spinner Prompt + Radio Button 1 + Radio Button 2 + Loading... + + diff --git a/hostsidetests/holo/app/src/android/holo/app/CaptureActivity.java b/hostsidetests/theme/app/src/android/theme/app/CaptureActivity.java similarity index 97% rename from hostsidetests/holo/app/src/android/holo/app/CaptureActivity.java rename to hostsidetests/theme/app/src/android/theme/app/CaptureActivity.java index 9551877fff89a0ef1716629e9e44a550b4c15439..d241ff6093382f1a4fadee9ded3fbcfbd7135c65 100644 --- a/hostsidetests/holo/app/src/android/holo/app/CaptureActivity.java +++ b/hostsidetests/theme/app/src/android/theme/app/CaptureActivity.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package android.holo.app; +package android.theme.app; import android.app.Activity; import android.content.Intent; @@ -31,7 +31,7 @@ public class CaptureActivity extends Activity { private static final int NUM_THEMES = 24; - private static final int NUM_LAYOUTS = 5; + private static final int NUM_LAYOUTS = 47; private final CountDownLatch mLatch = new CountDownLatch(1); diff --git a/hostsidetests/holo/app/src/android/holo/app/CaptureHolo.java b/hostsidetests/theme/app/src/android/theme/app/CaptureHolo.java similarity index 97% rename from hostsidetests/holo/app/src/android/holo/app/CaptureHolo.java rename to hostsidetests/theme/app/src/android/theme/app/CaptureHolo.java index 228cd9ca76552919abc62f3ac053f63714458cf2..7e2b2c9b231f73a6c46161629346bee5fcef2eef 100644 --- a/hostsidetests/holo/app/src/android/holo/app/CaptureHolo.java +++ b/hostsidetests/theme/app/src/android/theme/app/CaptureHolo.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package android.holo.app; +package android.theme.app; import android.app.KeyguardManager; import android.content.Context; 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 0000000000000000000000000000000000000000..12504c1793dada71027fd47f353bf07a87b47ce5 --- /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 0000000000000000000000000000000000000000..393997992f63ccb617581e368a2c981c0f005b1f --- /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 { + + @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/tests/tests/holo/src/android/holo/cts/LayoutModifier.java b/hostsidetests/theme/app/src/android/theme/app/LayoutModifier.java similarity index 97% rename from tests/tests/holo/src/android/holo/cts/LayoutModifier.java rename to hostsidetests/theme/app/src/android/theme/app/LayoutModifier.java index 73e31480dcd025d01c081f698afb1e49a3ad76da..844c578c7b37df29f10c00aab24026fc8734472c 100644 --- a/tests/tests/holo/src/android/holo/cts/LayoutModifier.java +++ b/hostsidetests/theme/app/src/android/theme/app/LayoutModifier.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package android.holo.cts; +package android.theme.app; import android.view.View; diff --git a/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java b/hostsidetests/theme/app/src/android/theme/app/ReferenceViewGroup.java similarity index 98% rename from tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java rename to hostsidetests/theme/app/src/android/theme/app/ReferenceViewGroup.java index 660a6bfd6858e786d4c291af97611636fcc4d0e7..077d8d7aedc37a2306e984e8eee823961c367727 100644 --- a/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java +++ b/hostsidetests/theme/app/src/android/theme/app/ReferenceViewGroup.java @@ -14,9 +14,9 @@ * limitations under the License. */ -package android.holo.cts; +package android.theme.app; -import com.android.cts.holo.R; +import android.theme.app.R; import android.content.Context; import android.content.res.Resources; diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/AbstractLayoutModifier.java similarity index 91% rename from tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java rename to hostsidetests/theme/app/src/android/theme/app/modifiers/AbstractLayoutModifier.java index 3f1d96bcaf99d6a38dc8c2370cd74b98b2aab4f1..5c945eff6b013a2372cce1ee60aae1ca347dcf45 100644 --- a/tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java +++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/AbstractLayoutModifier.java @@ -14,9 +14,9 @@ * limitations under the License. */ -package android.holo.cts.modifiers; +package android.theme.app.modifiers; -import android.holo.cts.LayoutModifier; +import android.theme.app.LayoutModifier; /** * {@link LayoutModifier} that does nothing in {@link #prepare()}. diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/DatePickerModifier.java similarity index 92% rename from tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java rename to hostsidetests/theme/app/src/android/theme/app/modifiers/DatePickerModifier.java index bfaf197f87b37c9a1b9bd938fe2b2ce7dec26137..26ccd67c7913501a694353108c51d153d864c7c7 100644 --- a/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java +++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/DatePickerModifier.java @@ -14,9 +14,9 @@ * limitations under the License. */ -package android.holo.cts.modifiers; +package android.theme.app.modifiers; -import android.holo.cts.LayoutModifier; +import android.theme.app.LayoutModifier; import android.view.View; import android.widget.DatePicker; diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/ProgressBarModifier.java similarity index 96% rename from tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java rename to hostsidetests/theme/app/src/android/theme/app/modifiers/ProgressBarModifier.java index 0cf6fa3fa0bf13c018290d8280b37224483d0225..9849a649141ed8231680f4e2ac1ca88428ad6fe3 100644 --- a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java +++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/ProgressBarModifier.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package android.holo.cts.modifiers; +package android.theme.app.modifiers; import android.view.View; import android.view.animation.Interpolator; diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/SearchViewModifier.java similarity index 96% rename from tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java rename to hostsidetests/theme/app/src/android/theme/app/modifiers/SearchViewModifier.java index 5c7386f5d5d4229b049777cc8fa1e7ef178b31d0..75dd20a54869507cca424cff190a1dfbca49a2b9 100644 --- a/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java +++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/SearchViewModifier.java @@ -14,9 +14,9 @@ * limitations under the License. */ -package android.holo.cts.modifiers; +package android.theme.app.modifiers; -import com.android.cts.holo.R; +import android.theme.app.R; import android.content.Context; import android.view.View; diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/TimePickerModifier.java similarity index 96% rename from tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java rename to hostsidetests/theme/app/src/android/theme/app/modifiers/TimePickerModifier.java index 832d130ab0f0df5b9b37295bfd90a30670e3c981..b2ed4efcc202cccf60a01d188e65c9ec1752c9f5 100644 --- a/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java +++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/TimePickerModifier.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package android.holo.cts.modifiers; +package android.theme.app.modifiers; import android.view.View; import android.widget.TimePicker; 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 0000000000000000000000000000000000000000..f55f0570e84442ae2188c2a286a43ed119f10dc9 --- /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/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/ViewPressedModifier.java similarity index 95% rename from tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java rename to hostsidetests/theme/app/src/android/theme/app/modifiers/ViewPressedModifier.java index e07d42ec0e000477b20bf5373124543ec43a3d71..a94962d3eed835b688195301ed3b21d741e7dadb 100644 --- a/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java +++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/ViewPressedModifier.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package android.holo.cts.modifiers; +package android.theme.app.modifiers; import android.view.View; diff --git a/hostsidetests/theme/assets/17/400dpi.zip b/hostsidetests/theme/assets/17/400dpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..efcfa0beb46cacabeb78d461530f253ca1c2b413 Binary files /dev/null and b/hostsidetests/theme/assets/17/400dpi.zip differ diff --git a/hostsidetests/theme/assets/17/hdpi.zip b/hostsidetests/theme/assets/17/hdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..b10eedf6b260d49d747eb3cec9baca57af60a7ef Binary files /dev/null and b/hostsidetests/theme/assets/17/hdpi.zip differ diff --git a/hostsidetests/theme/assets/17/ldpi.zip b/hostsidetests/theme/assets/17/ldpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..ef9c883b675c11abe41ff5524cf1f5c8dbe001e7 Binary files /dev/null and b/hostsidetests/theme/assets/17/ldpi.zip differ diff --git a/hostsidetests/theme/assets/17/mdpi.zip b/hostsidetests/theme/assets/17/mdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..5e8a04d2e3ca45802e894b63d942000a673d3edb Binary files /dev/null and b/hostsidetests/theme/assets/17/mdpi.zip differ diff --git a/hostsidetests/theme/assets/17/tvdpi.zip b/hostsidetests/theme/assets/17/tvdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..ad71d4ea26eda217537b29a7ca7de3b96f3b27d4 Binary files /dev/null and b/hostsidetests/theme/assets/17/tvdpi.zip differ diff --git a/hostsidetests/theme/assets/17/xhdpi.zip b/hostsidetests/theme/assets/17/xhdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..d48620d03a9948a12b21e92226157baabba3c1b9 Binary files /dev/null and b/hostsidetests/theme/assets/17/xhdpi.zip differ diff --git a/hostsidetests/theme/assets/18/400dpi.zip b/hostsidetests/theme/assets/18/400dpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..21d2ea8a7c4e0017ac341e7efb880f9196be1385 Binary files /dev/null and b/hostsidetests/theme/assets/18/400dpi.zip differ diff --git a/hostsidetests/theme/assets/18/hdpi.zip b/hostsidetests/theme/assets/18/hdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..3f7fb6d1c36af3394f733926bbc110e1c91f0725 Binary files /dev/null and b/hostsidetests/theme/assets/18/hdpi.zip differ diff --git a/hostsidetests/theme/assets/18/ldpi.zip b/hostsidetests/theme/assets/18/ldpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..957a6e3a2d0e37ab98a62e0d8fc82731deb12b1c Binary files /dev/null and b/hostsidetests/theme/assets/18/ldpi.zip differ diff --git a/hostsidetests/theme/assets/18/mdpi.zip b/hostsidetests/theme/assets/18/mdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..833a8d5dc6cfbe4ccb960a4edcb1697438444455 Binary files /dev/null and b/hostsidetests/theme/assets/18/mdpi.zip differ diff --git a/hostsidetests/theme/assets/18/tvdpi.zip b/hostsidetests/theme/assets/18/tvdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..017f059315af641822d3c3a3021c21c30f407098 Binary files /dev/null and b/hostsidetests/theme/assets/18/tvdpi.zip differ diff --git a/hostsidetests/theme/assets/18/xhdpi.zip b/hostsidetests/theme/assets/18/xhdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..4bcdcae4683ff9fc70a1a4c16d15fcdc058f3473 Binary files /dev/null and b/hostsidetests/theme/assets/18/xhdpi.zip differ diff --git a/hostsidetests/theme/assets/19/400dpi.zip b/hostsidetests/theme/assets/19/400dpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..2f9edd20a5400ff8be66d9038ddf4d92aedf5880 Binary files /dev/null and b/hostsidetests/theme/assets/19/400dpi.zip differ diff --git a/hostsidetests/theme/assets/19/hdpi.zip b/hostsidetests/theme/assets/19/hdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..45f07f4a84807569d805e67f8825e647a45fe009 Binary files /dev/null and b/hostsidetests/theme/assets/19/hdpi.zip differ diff --git a/hostsidetests/theme/assets/19/ldpi.zip b/hostsidetests/theme/assets/19/ldpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..89d654452c1b1dbbc753ebc9deb16ab153b84941 Binary files /dev/null and b/hostsidetests/theme/assets/19/ldpi.zip differ diff --git a/hostsidetests/theme/assets/19/mdpi.zip b/hostsidetests/theme/assets/19/mdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..6559c4af489c371528c1bd410485748bf7076bd0 Binary files /dev/null and b/hostsidetests/theme/assets/19/mdpi.zip differ diff --git a/hostsidetests/theme/assets/19/tvdpi.zip b/hostsidetests/theme/assets/19/tvdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..6496a1f7863f60d2a685251f1e3a237b6dce76b5 Binary files /dev/null and b/hostsidetests/theme/assets/19/tvdpi.zip differ diff --git a/hostsidetests/theme/assets/19/xhdpi.zip b/hostsidetests/theme/assets/19/xhdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..515dcf2eddc2053134c90501c782ccdea263dd0d Binary files /dev/null and b/hostsidetests/theme/assets/19/xhdpi.zip differ diff --git a/hostsidetests/theme/assets/19/xxhdpi.zip b/hostsidetests/theme/assets/19/xxhdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..c9c7a5986c17e993f5d05d7fa90a219dc6302c75 Binary files /dev/null and b/hostsidetests/theme/assets/19/xxhdpi.zip differ diff --git a/hostsidetests/theme/assets/21/400dpi.zip b/hostsidetests/theme/assets/21/400dpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..17efbbe4e9b556f195ada6b0e031e5c65c56da22 Binary files /dev/null and b/hostsidetests/theme/assets/21/400dpi.zip differ diff --git a/hostsidetests/theme/assets/21/hdpi.zip b/hostsidetests/theme/assets/21/hdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..2035d17391db0dcded67d3319ae48c6b9d47bb47 Binary files /dev/null and b/hostsidetests/theme/assets/21/hdpi.zip differ diff --git a/hostsidetests/theme/assets/21/ldpi.zip b/hostsidetests/theme/assets/21/ldpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..059bf3300afcb91f670a356d7a537788b75fb038 Binary files /dev/null and b/hostsidetests/theme/assets/21/ldpi.zip differ diff --git a/hostsidetests/theme/assets/21/mdpi.zip b/hostsidetests/theme/assets/21/mdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..0fb07780f55245c682bfcfbb3b4ab8ec94997495 Binary files /dev/null and b/hostsidetests/theme/assets/21/mdpi.zip differ diff --git a/hostsidetests/theme/assets/21/tvdpi.zip b/hostsidetests/theme/assets/21/tvdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..eb6fd8c2f6a86364a1efd2b4714f36633ac7058c Binary files /dev/null and b/hostsidetests/theme/assets/21/tvdpi.zip differ diff --git a/hostsidetests/theme/assets/21/xhdpi.zip b/hostsidetests/theme/assets/21/xhdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..c4b4d0ee2d36c9c94c2326eaf9799f801fd44db7 Binary files /dev/null and b/hostsidetests/theme/assets/21/xhdpi.zip differ diff --git a/hostsidetests/theme/assets/21/xxhdpi.zip b/hostsidetests/theme/assets/21/xxhdpi.zip new file mode 100644 index 0000000000000000000000000000000000000000..62983df40f551345d778e27a009c49bba674e7e8 Binary files /dev/null and b/hostsidetests/theme/assets/21/xxhdpi.zip differ diff --git a/hostsidetests/holo/src/android/holo/cts/ComparisonTask.java b/hostsidetests/theme/src/android/theme/cts/ComparisonTask.java similarity index 84% rename from hostsidetests/holo/src/android/holo/cts/ComparisonTask.java rename to hostsidetests/theme/src/android/theme/cts/ComparisonTask.java index 36f3759c7a5ca64c4e0e364575cb120e6a3222fb..19c37c048152b3a25b94a10e3870eea62ed4c15f 100644 --- a/hostsidetests/holo/src/android/holo/cts/ComparisonTask.java +++ b/hostsidetests/theme/src/android/theme/cts/ComparisonTask.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package android.holo.cts; +package android.theme.cts; import com.android.ddmlib.Log; import com.android.ddmlib.Log.LogLevel; @@ -35,20 +35,31 @@ public class ComparisonTask implements Callable { 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 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() { @@ -57,7 +68,12 @@ public class ComparisonTask implements Callable { try { generated = File.createTempFile("gen_" + mName, ".png"); - mDevice.pullFile(String.format(DEVICE_PATH, mName), generated); + 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); @@ -69,7 +85,9 @@ public class ComparisonTask implements Callable { 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(); 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 0000000000000000000000000000000000000000..c88fb44604aab49eeeebb1e7871ab72e8bea5aac --- /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 mReferences = new HashMap(); + + /** A reference to the build. */ + private CtsBuildHelper mBuild; + + /** A reference to the device under test. */ + private ITestDevice mDevice; + + private ExecutorService mExecutionService; + + private ExecutorCompletionService 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(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 e21b7bd28d327163b5e39542c483d126529766ef..0000000000000000000000000000000000000000 --- 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 34f8e72a8364e1101c7b74211b2f18ea2c5b6d3f..0000000000000000000000000000000000000000 --- a/tests/tests/holo/AndroidManifest.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 e5f1f96dda6375d4d99f19a6a22a748941534942..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/display_info.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_color_red_light.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_light.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 10b3950d45a1c20e02bbf68a6bc60687ba2ad4f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/display_info.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_button_pressed.png and /dev/null 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 4eeb624cada0c92089b254dd58a48cef5d001b4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_calendar_view.png and /dev/null 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 ad87d6095b16be33fecf58beba9c86f4903c5990..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_color_red_light.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_button_pressed.png and /dev/null 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 ae579d79755a3861476afbd3c1d3a71eae9c57ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view.png and /dev/null 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 69df678b5cd71b31b30211ac22f3fe47d9e9d7b5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 ae579d79755a3861476afbd3c1d3a71eae9c57ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 69df678b5cd71b31b30211ac22f3fe47d9e9d7b5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 4eeb624cada0c92089b254dd58a48cef5d001b4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 ad87d6095b16be33fecf58beba9c86f4903c5990..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 4eeb624cada0c92089b254dd58a48cef5d001b4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 ad87d6095b16be33fecf58beba9c86f4903c5990..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 4eeb624cada0c92089b254dd58a48cef5d001b4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 ad87d6095b16be33fecf58beba9c86f4903c5990..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 4eeb624cada0c92089b254dd58a48cef5d001b4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 ad87d6095b16be33fecf58beba9c86f4903c5990..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button_pressed.png and /dev/null 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 3196800b837e2b861360136b4bd06ae647ff7f04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view.png and /dev/null 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 06373c5d5f982989717b5cdf57e667e9e731a1ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_button_pressed.png and /dev/null 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 3196800b837e2b861360136b4bd06ae647ff7f04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view.png and /dev/null 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 06373c5d5f982989717b5cdf57e667e9e731a1ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_light.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 3196800b837e2b861360136b4bd06ae647ff7f04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 06373c5d5f982989717b5cdf57e667e9e731a1ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button_pressed.png and /dev/null 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 9cdec5cedc8c553ab865c2f8899acef923854971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view.png and /dev/null 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 4bf52bb434325d05ca78439f963f59873c4eb2d3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 9cdec5cedc8c553ab865c2f8899acef923854971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 4bf52bb434325d05ca78439f963f59873c4eb2d3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 3196800b837e2b861360136b4bd06ae647ff7f04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 06373c5d5f982989717b5cdf57e667e9e731a1ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 3196800b837e2b861360136b4bd06ae647ff7f04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 06373c5d5f982989717b5cdf57e667e9e731a1ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 3196800b837e2b861360136b4bd06ae647ff7f04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 06373c5d5f982989717b5cdf57e667e9e731a1ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 3196800b837e2b861360136b4bd06ae647ff7f04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 06373c5d5f982989717b5cdf57e667e9e731a1ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 3196800b837e2b861360136b4bd06ae647ff7f04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 06373c5d5f982989717b5cdf57e667e9e731a1ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 4fa916a4ac4fd0b74f89ffbc910dbbe2d0949c02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png and /dev/null 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 78802fc28cd6c5da6541f47f945608dcf31f508f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button_pressed.png and /dev/null 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 4eeb624cada0c92089b254dd58a48cef5d001b4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view.png and /dev/null 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 ad87d6095b16be33fecf58beba9c86f4903c5990..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button_pressed.png and /dev/null 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 4eeb624cada0c92089b254dd58a48cef5d001b4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view.png and /dev/null 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 ad87d6095b16be33fecf58beba9c86f4903c5990..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 4eeb624cada0c92089b254dd58a48cef5d001b4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 ad87d6095b16be33fecf58beba9c86f4903c5990..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 2316e8a7887ffeec9cc5053da65f66ca4dbdeed9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png and /dev/null 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 bb6661491b3f5bca7ff8e77f7c13723bc1c16391..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 1b74e014d63029829ee78b53338fb4150ec80d88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/display_info.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_button_pressed.png and /dev/null 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 938038d0a52a1ab78f3d99d69bb69bcd60bb2497..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view.png and /dev/null 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 de81b6347033b77a6a64686e5bd7535986b98469..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_light.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button_pressed.png and /dev/null 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 938038d0a52a1ab78f3d99d69bb69bcd60bb2497..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view.png and /dev/null 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 de81b6347033b77a6a64686e5bd7535986b98469..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 938038d0a52a1ab78f3d99d69bb69bcd60bb2497..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 de81b6347033b77a6a64686e5bd7535986b98469..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 938038d0a52a1ab78f3d99d69bb69bcd60bb2497..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 de81b6347033b77a6a64686e5bd7535986b98469..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_button_pressed.png and /dev/null 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 4f334aa80efc6369dd138bf06718cfd3260100f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view.png and /dev/null 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 85d76195d2b1263a5b3a2fb78137a451facec924..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_light.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 4f334aa80efc6369dd138bf06718cfd3260100f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 85d76195d2b1263a5b3a2fb78137a451facec924..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button_pressed.png and /dev/null 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 4f334aa80efc6369dd138bf06718cfd3260100f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view.png and /dev/null 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 85d76195d2b1263a5b3a2fb78137a451facec924..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 4f334aa80efc6369dd138bf06718cfd3260100f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 85d76195d2b1263a5b3a2fb78137a451facec924..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 4f334aa80efc6369dd138bf06718cfd3260100f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 85d76195d2b1263a5b3a2fb78137a451facec924..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button_pressed.png and /dev/null 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 938038d0a52a1ab78f3d99d69bb69bcd60bb2497..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view.png and /dev/null 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 de81b6347033b77a6a64686e5bd7535986b98469..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 a665018f78f0b5955f516b613ac660f0d0985bd1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/display_info.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_button_pressed.png and /dev/null 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 99d030caa821226cca1108f147a6b9c9edc2ac19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view.png and /dev/null 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 14dffa23ae7d5a435f34bc05305d98760c981659..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_light.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button_pressed.png and /dev/null 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 99d030caa821226cca1108f147a6b9c9edc2ac19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view.png and /dev/null 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 14dffa23ae7d5a435f34bc05305d98760c981659..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 99d030caa821226cca1108f147a6b9c9edc2ac19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 14dffa23ae7d5a435f34bc05305d98760c981659..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 ae579d79755a3861476afbd3c1d3a71eae9c57ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 69df678b5cd71b31b30211ac22f3fe47d9e9d7b5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 ae579d79755a3861476afbd3c1d3a71eae9c57ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 69df678b5cd71b31b30211ac22f3fe47d9e9d7b5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 99d030caa821226cca1108f147a6b9c9edc2ac19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 14dffa23ae7d5a435f34bc05305d98760c981659..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 ae579d79755a3861476afbd3c1d3a71eae9c57ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 69df678b5cd71b31b30211ac22f3fe47d9e9d7b5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button_pressed.png and /dev/null 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 9cdec5cedc8c553ab865c2f8899acef923854971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view.png and /dev/null 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 4bf52bb434325d05ca78439f963f59873c4eb2d3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_button_pressed.png and /dev/null 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 c12dbb8f7b05a39fd73f51904a91ecacc9291568..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view.png and /dev/null 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 bfd03e014f8b3ecc339d2b80a655194b0515858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_light.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 c12dbb8f7b05a39fd73f51904a91ecacc9291568..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 bfd03e014f8b3ecc339d2b80a655194b0515858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button_pressed.png and /dev/null 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 c12dbb8f7b05a39fd73f51904a91ecacc9291568..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view.png and /dev/null 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 bfd03e014f8b3ecc339d2b80a655194b0515858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 c12dbb8f7b05a39fd73f51904a91ecacc9291568..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 bfd03e014f8b3ecc339d2b80a655194b0515858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 9cdec5cedc8c553ab865c2f8899acef923854971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 4bf52bb434325d05ca78439f963f59873c4eb2d3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 9cdec5cedc8c553ab865c2f8899acef923854971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 4bf52bb434325d05ca78439f963f59873c4eb2d3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 c12dbb8f7b05a39fd73f51904a91ecacc9291568..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 bfd03e014f8b3ecc339d2b80a655194b0515858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 9cdec5cedc8c553ab865c2f8899acef923854971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 4bf52bb434325d05ca78439f963f59873c4eb2d3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 9cdec5cedc8c553ab865c2f8899acef923854971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 4bf52bb434325d05ca78439f963f59873c4eb2d3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 9cdec5cedc8c553ab865c2f8899acef923854971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 4bf52bb434325d05ca78439f963f59873c4eb2d3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button_pressed.png and /dev/null 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 9cdec5cedc8c553ab865c2f8899acef923854971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view.png and /dev/null 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 4bf52bb434325d05ca78439f963f59873c4eb2d3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 dc730b4f42943d1933e89b51a25c2906bc6d2f5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch_checked.png and /dev/null 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 524fe9b1fe391613ad18bb185d518f7e1876b4f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button_pressed.png and /dev/null 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 ae579d79755a3861476afbd3c1d3a71eae9c57ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view.png and /dev/null 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 69df678b5cd71b31b30211ac22f3fe47d9e9d7b5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 ae579d79755a3861476afbd3c1d3a71eae9c57ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 69df678b5cd71b31b30211ac22f3fe47d9e9d7b5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button_pressed.png and /dev/null 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 ae579d79755a3861476afbd3c1d3a71eae9c57ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view.png and /dev/null 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 69df678b5cd71b31b30211ac22f3fe47d9e9d7b5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button_pressed.png and /dev/null 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 99d030caa821226cca1108f147a6b9c9edc2ac19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view.png and /dev/null 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 14dffa23ae7d5a435f34bc05305d98760c981659..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 ae579d79755a3861476afbd3c1d3a71eae9c57ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 69df678b5cd71b31b30211ac22f3fe47d9e9d7b5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 da19499c3ebe0c440cb16e38be3c721f74618145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch_checked.png and /dev/null 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 4cbeccf4bf651570060816d4db174cf9340d1fc0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 64c8f3a8ce3dfd39ef8a8f280f85341915532b1f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/display_info.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_button_pressed.png and /dev/null 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 53ee68c50f20b7ee95bbcc2840eaa8a793850e8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view.png and /dev/null 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 997b265e852f54c4b0c361e4151008a7204ddb9f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_light.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button_pressed.png and /dev/null 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 53ee68c50f20b7ee95bbcc2840eaa8a793850e8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view.png and /dev/null 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 997b265e852f54c4b0c361e4151008a7204ddb9f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 53ee68c50f20b7ee95bbcc2840eaa8a793850e8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 997b265e852f54c4b0c361e4151008a7204ddb9f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 16be64f1396b9e1389a91e18ca80ebe6e107e77b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 8ff351e9b0a45147ab7bcbd56abd8451dc87bb06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 16be64f1396b9e1389a91e18ca80ebe6e107e77b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 8ff351e9b0a45147ab7bcbd56abd8451dc87bb06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 53ee68c50f20b7ee95bbcc2840eaa8a793850e8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 997b265e852f54c4b0c361e4151008a7204ddb9f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 16be64f1396b9e1389a91e18ca80ebe6e107e77b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 8ff351e9b0a45147ab7bcbd56abd8451dc87bb06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button_pressed.png and /dev/null 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 c056720facafe9197d3a66d24407bea7c38a2f37..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view.png and /dev/null 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 c73a6bb4497ba77ce00a0e76f3eb6c99bd3f51c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_button_pressed.png and /dev/null 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 77981c68347dd1e48774657c2bfbe8c624d02ade..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view.png and /dev/null 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 b6a3662d532942cfd953aab1b4eb9b02ffdb9bfa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_light.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 77981c68347dd1e48774657c2bfbe8c624d02ade..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 b6a3662d532942cfd953aab1b4eb9b02ffdb9bfa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button_pressed.png and /dev/null 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 77981c68347dd1e48774657c2bfbe8c624d02ade..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view.png and /dev/null 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 b6a3662d532942cfd953aab1b4eb9b02ffdb9bfa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 77981c68347dd1e48774657c2bfbe8c624d02ade..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 b6a3662d532942cfd953aab1b4eb9b02ffdb9bfa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 c056720facafe9197d3a66d24407bea7c38a2f37..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 c73a6bb4497ba77ce00a0e76f3eb6c99bd3f51c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 c056720facafe9197d3a66d24407bea7c38a2f37..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 c73a6bb4497ba77ce00a0e76f3eb6c99bd3f51c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 77981c68347dd1e48774657c2bfbe8c624d02ade..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 b6a3662d532942cfd953aab1b4eb9b02ffdb9bfa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 c056720facafe9197d3a66d24407bea7c38a2f37..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 c73a6bb4497ba77ce00a0e76f3eb6c99bd3f51c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 c056720facafe9197d3a66d24407bea7c38a2f37..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 c73a6bb4497ba77ce00a0e76f3eb6c99bd3f51c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 c056720facafe9197d3a66d24407bea7c38a2f37..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 c73a6bb4497ba77ce00a0e76f3eb6c99bd3f51c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button_pressed.png and /dev/null 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 c056720facafe9197d3a66d24407bea7c38a2f37..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view.png and /dev/null 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 c73a6bb4497ba77ce00a0e76f3eb6c99bd3f51c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 3364ae1b8f14593990271b19a617acc461bed9a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch_checked.png and /dev/null 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 fa09688eed2d00704cccee3cccdb22966f49438d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button_pressed.png and /dev/null 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 16be64f1396b9e1389a91e18ca80ebe6e107e77b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view.png and /dev/null 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 8ff351e9b0a45147ab7bcbd56abd8451dc87bb06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 16be64f1396b9e1389a91e18ca80ebe6e107e77b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 8ff351e9b0a45147ab7bcbd56abd8451dc87bb06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button_pressed.png and /dev/null 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 16be64f1396b9e1389a91e18ca80ebe6e107e77b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view.png and /dev/null 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 8ff351e9b0a45147ab7bcbd56abd8451dc87bb06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button_pressed.png and /dev/null 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 53ee68c50f20b7ee95bbcc2840eaa8a793850e8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view.png and /dev/null 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 997b265e852f54c4b0c361e4151008a7204ddb9f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 16be64f1396b9e1389a91e18ca80ebe6e107e77b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 8ff351e9b0a45147ab7bcbd56abd8451dc87bb06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 8d863518a3ebdd4f7a758407196bb476e7f5c9f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch_checked.png and /dev/null 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 213dfbedb6210fe6346ad7842cd363ed905202a3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 f3e676560837fe24da26a3f821aad8eab29d6842..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/display_info.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_button_pressed.png and /dev/null 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 0f874469884effcdc9186651e6cbd61c0dd90b02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view.png and /dev/null 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 3f4d13b9c6fbf8b1fd843ea65ca638983a84b1d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_light.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button_pressed.png and /dev/null 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 0f874469884effcdc9186651e6cbd61c0dd90b02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view.png and /dev/null 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 3f4d13b9c6fbf8b1fd843ea65ca638983a84b1d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 0f874469884effcdc9186651e6cbd61c0dd90b02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 3f4d13b9c6fbf8b1fd843ea65ca638983a84b1d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 3683bc6f9f9dcacf2c708359a7e9b93acc36e5e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 0ba1245015807ac168b8d24d4652b859746522fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 3683bc6f9f9dcacf2c708359a7e9b93acc36e5e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 0ba1245015807ac168b8d24d4652b859746522fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 0f874469884effcdc9186651e6cbd61c0dd90b02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 3f4d13b9c6fbf8b1fd843ea65ca638983a84b1d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 3683bc6f9f9dcacf2c708359a7e9b93acc36e5e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 0ba1245015807ac168b8d24d4652b859746522fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button_pressed.png and /dev/null 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 9ec2e109a102805e9c446e118efa9a6f6c6e9efa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view.png and /dev/null 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 0da084b84837ba14bd1c80227e7f37d49cdf170f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_button_pressed.png and /dev/null 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 c9dd22e83286634aee179ebee3e5a8d8d915f585..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view.png and /dev/null 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 22dfeca33a3613847d20cf62d11fac08773b4b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_light.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 c9dd22e83286634aee179ebee3e5a8d8d915f585..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 22dfeca33a3613847d20cf62d11fac08773b4b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button_pressed.png and /dev/null 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 c9dd22e83286634aee179ebee3e5a8d8d915f585..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view.png and /dev/null 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 22dfeca33a3613847d20cf62d11fac08773b4b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 c9dd22e83286634aee179ebee3e5a8d8d915f585..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 22dfeca33a3613847d20cf62d11fac08773b4b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 9ec2e109a102805e9c446e118efa9a6f6c6e9efa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 0da084b84837ba14bd1c80227e7f37d49cdf170f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 9ec2e109a102805e9c446e118efa9a6f6c6e9efa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 0da084b84837ba14bd1c80227e7f37d49cdf170f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 c9dd22e83286634aee179ebee3e5a8d8d915f585..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 22dfeca33a3613847d20cf62d11fac08773b4b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 9ec2e109a102805e9c446e118efa9a6f6c6e9efa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 0da084b84837ba14bd1c80227e7f37d49cdf170f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 9ec2e109a102805e9c446e118efa9a6f6c6e9efa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 0da084b84837ba14bd1c80227e7f37d49cdf170f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 9ec2e109a102805e9c446e118efa9a6f6c6e9efa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 0da084b84837ba14bd1c80227e7f37d49cdf170f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button_pressed.png and /dev/null 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 9ec2e109a102805e9c446e118efa9a6f6c6e9efa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view.png and /dev/null 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 0da084b84837ba14bd1c80227e7f37d49cdf170f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 133fa960a0a53e732b9e708617d77affc105a2df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch_checked.png and /dev/null 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 754b5df715cf30b35b809d21f4b3fde8aa37591d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button_pressed.png and /dev/null 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 3683bc6f9f9dcacf2c708359a7e9b93acc36e5e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view.png and /dev/null 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 0ba1245015807ac168b8d24d4652b859746522fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 3683bc6f9f9dcacf2c708359a7e9b93acc36e5e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 0ba1245015807ac168b8d24d4652b859746522fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button_pressed.png and /dev/null 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 3683bc6f9f9dcacf2c708359a7e9b93acc36e5e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view.png and /dev/null 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 0ba1245015807ac168b8d24d4652b859746522fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button_pressed.png and /dev/null 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 0f874469884effcdc9186651e6cbd61c0dd90b02..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view.png and /dev/null 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 3f4d13b9c6fbf8b1fd843ea65ca638983a84b1d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 3683bc6f9f9dcacf2c708359a7e9b93acc36e5e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 0ba1245015807ac168b8d24d4652b859746522fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 a4ed4e6cd85d72e4d1f189c096297ab3c1e9adc2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch_checked.png and /dev/null 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 6b6cec09a078b0af1fd4edd5ed26f3364f89d0cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 99de970133ca2b042515a172ed0c3141361cea2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/display_info.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_button_pressed.png and /dev/null 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 1491b42f3af110d581f3daec09428333e915d575..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view.png and /dev/null 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 dd78ae3fd9ba9cbeb20fabfd59d9f50d09c555cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_light.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button_pressed.png and /dev/null 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 0dbbb98ce4a8aa6bee0ca612e495d9e3c0daa99c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view.png and /dev/null 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 6102fc86797cc323eee7d2a56495b8dc3ae5c1c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 0dbbb98ce4a8aa6bee0ca612e495d9e3c0daa99c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 6102fc86797cc323eee7d2a56495b8dc3ae5c1c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 1491b42f3af110d581f3daec09428333e915d575..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 dd78ae3fd9ba9cbeb20fabfd59d9f50d09c555cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 1491b42f3af110d581f3daec09428333e915d575..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 dd78ae3fd9ba9cbeb20fabfd59d9f50d09c555cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 1491b42f3af110d581f3daec09428333e915d575..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 dd78ae3fd9ba9cbeb20fabfd59d9f50d09c555cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 1491b42f3af110d581f3daec09428333e915d575..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 dd78ae3fd9ba9cbeb20fabfd59d9f50d09c555cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button_pressed.png and /dev/null 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 e2e381b44ceb51bb0558d08d171d9d4d62fe7f22..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view.png and /dev/null 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 6c2b1f3c2c2f46d5a617684677898cbd80386d6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button_pressed.png and /dev/null 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 e2e381b44ceb51bb0558d08d171d9d4d62fe7f22..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view.png and /dev/null 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 6c2b1f3c2c2f46d5a617684677898cbd80386d6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_light.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 e2e381b44ceb51bb0558d08d171d9d4d62fe7f22..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 6c2b1f3c2c2f46d5a617684677898cbd80386d6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button_pressed.png and /dev/null 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 efd0a408d75be95dadf54b25cac40a6e66bb6fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view.png and /dev/null 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 868a18eaf3d18b5092f99d548f1d582df0daace7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 efd0a408d75be95dadf54b25cac40a6e66bb6fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 868a18eaf3d18b5092f99d548f1d582df0daace7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 e2e381b44ceb51bb0558d08d171d9d4d62fe7f22..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 6c2b1f3c2c2f46d5a617684677898cbd80386d6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 e2e381b44ceb51bb0558d08d171d9d4d62fe7f22..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 6c2b1f3c2c2f46d5a617684677898cbd80386d6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 e2e381b44ceb51bb0558d08d171d9d4d62fe7f22..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 6c2b1f3c2c2f46d5a617684677898cbd80386d6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 e2e381b44ceb51bb0558d08d171d9d4d62fe7f22..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 6c2b1f3c2c2f46d5a617684677898cbd80386d6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 e2e381b44ceb51bb0558d08d171d9d4d62fe7f22..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 6c2b1f3c2c2f46d5a617684677898cbd80386d6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 3c61854dd8b8290fd5d167125f99a29a609353df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 b00bbf901882fb6b22e16f9a8c009987fd5c7237..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button_pressed.png and /dev/null 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 e2e381b44ceb51bb0558d08d171d9d4d62fe7f22..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view.png and /dev/null 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 6c2b1f3c2c2f46d5a617684677898cbd80386d6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 9ff0a17cdd44ea2d72dfc0ac5cd6d02e5815ac7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch_checked.png and /dev/null 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 565fae26223be9f8945966db6f51f7215ed172b7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button_pressed.png and /dev/null 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 1491b42f3af110d581f3daec09428333e915d575..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view.png and /dev/null 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 dd78ae3fd9ba9cbeb20fabfd59d9f50d09c555cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 aa13d2cc4cce3e917d6035f918beeeceb526ab6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 2a9d640372f48f7c40d94084120bf1d757e633ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button_pressed.png and /dev/null 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 aa13d2cc4cce3e917d6035f918beeeceb526ab6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view.png and /dev/null 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 2a9d640372f48f7c40d94084120bf1d757e633ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button_pressed.png and /dev/null 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 1491b42f3af110d581f3daec09428333e915d575..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view.png and /dev/null 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 dd78ae3fd9ba9cbeb20fabfd59d9f50d09c555cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 1491b42f3af110d581f3daec09428333e915d575..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 dd78ae3fd9ba9cbeb20fabfd59d9f50d09c555cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 7320b9893c003505a56d28025fd0b3ec16858542..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch_checked.png and /dev/null 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 6f9209f6f221f9515da24efa278279db2988e1d5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 4c0c2b41e39fccf76939bd3178663824f9412f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/display_info.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_button_pressed.png and /dev/null 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 db7977a01a761ed625f88412ff3fd821ead99272..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view.png and /dev/null 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 6aea18db93f3a2d5b197628ad15678173ba72963..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_light.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button_pressed.png and /dev/null 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 db7977a01a761ed625f88412ff3fd821ead99272..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view.png and /dev/null 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 6aea18db93f3a2d5b197628ad15678173ba72963..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 db7977a01a761ed625f88412ff3fd821ead99272..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 6aea18db93f3a2d5b197628ad15678173ba72963..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 ef5986e559656f11a3e4a3cc4689164ab45d2685..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 7d2836ada096bf610be8d75731e490ef4ec90356..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 ef5986e559656f11a3e4a3cc4689164ab45d2685..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 7d2836ada096bf610be8d75731e490ef4ec90356..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 db7977a01a761ed625f88412ff3fd821ead99272..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 6aea18db93f3a2d5b197628ad15678173ba72963..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 ef5986e559656f11a3e4a3cc4689164ab45d2685..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 7d2836ada096bf610be8d75731e490ef4ec90356..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 87327ebbc945b1818bfe675fc7b3697cdbf80f27..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 31282d23cee90e2796b36d2faad45886a69faaf9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button_pressed.png and /dev/null 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 36328a06a5870b4598f50355b442ea8e6df78e86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view.png and /dev/null 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 62366db567a40f123d8f0df010a8ec9d4ad8d730..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_light.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 36328a06a5870b4598f50355b442ea8e6df78e86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 62366db567a40f123d8f0df010a8ec9d4ad8d730..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 36328a06a5870b4598f50355b442ea8e6df78e86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 62366db567a40f123d8f0df010a8ec9d4ad8d730..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 36328a06a5870b4598f50355b442ea8e6df78e86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 62366db567a40f123d8f0df010a8ec9d4ad8d730..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 87327ebbc945b1818bfe675fc7b3697cdbf80f27..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 31282d23cee90e2796b36d2faad45886a69faaf9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 87327ebbc945b1818bfe675fc7b3697cdbf80f27..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 31282d23cee90e2796b36d2faad45886a69faaf9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 36328a06a5870b4598f50355b442ea8e6df78e86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 62366db567a40f123d8f0df010a8ec9d4ad8d730..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 87327ebbc945b1818bfe675fc7b3697cdbf80f27..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 31282d23cee90e2796b36d2faad45886a69faaf9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 87327ebbc945b1818bfe675fc7b3697cdbf80f27..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 31282d23cee90e2796b36d2faad45886a69faaf9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 87327ebbc945b1818bfe675fc7b3697cdbf80f27..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 31282d23cee90e2796b36d2faad45886a69faaf9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button_pressed.png and /dev/null 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 87327ebbc945b1818bfe675fc7b3697cdbf80f27..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view.png and /dev/null 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 31282d23cee90e2796b36d2faad45886a69faaf9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 1997d624a3b10e36bc6bc32f9c763479199e02a5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch_checked.png and /dev/null 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 d1cc78365c9475b2271401407185829f72b87159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 ef5986e559656f11a3e4a3cc4689164ab45d2685..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 7d2836ada096bf610be8d75731e490ef4ec90356..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 ef5986e559656f11a3e4a3cc4689164ab45d2685..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 7d2836ada096bf610be8d75731e490ef4ec90356..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button_pressed.png and /dev/null 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 ef5986e559656f11a3e4a3cc4689164ab45d2685..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view.png and /dev/null 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 7d2836ada096bf610be8d75731e490ef4ec90356..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 db7977a01a761ed625f88412ff3fd821ead99272..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 6aea18db93f3a2d5b197628ad15678173ba72963..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 ef5986e559656f11a3e4a3cc4689164ab45d2685..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 7d2836ada096bf610be8d75731e490ef4ec90356..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 de97e9f55932cd10ec1301b0ea6fb723796beba0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 2d6a49b8b593174d4e651e60e0ab56a5394b72e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 c6f7fd84f28248ee436d1e8c642fb0d4a839b945..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/display_info.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_light.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_light.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 80fb870987eb47f3555d2adf3e8d4b0069d5ec88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 f631dadf8bcbd0421a307028b943186760598550..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 eb0fc5e1545d107bf3a4656b7cfe06c628e2a6c2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 c2daa9dc603a579ee4332077f3e001ce749cf40a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 7ad9b5294f56f52cca53035fc73e20d677ce7747..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/display_info.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button_pressed.png and /dev/null 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 a762092fd22c9d119845136023ce5e774419e1c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view.png and /dev/null 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 2b969d63acb4907b8f5e089f1da80d1f80ecfe7e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_light.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button_pressed.png and /dev/null 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 a762092fd22c9d119845136023ce5e774419e1c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view.png and /dev/null 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 2b969d63acb4907b8f5e089f1da80d1f80ecfe7e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 a762092fd22c9d119845136023ce5e774419e1c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 2b969d63acb4907b8f5e089f1da80d1f80ecfe7e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 e0c64dd425661f9e782c028d493a6d41eaf2fd99..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 19e47294b9a6197ca78d6519dc2ed4a44a08e209..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 e0c64dd425661f9e782c028d493a6d41eaf2fd99..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 19e47294b9a6197ca78d6519dc2ed4a44a08e209..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 a762092fd22c9d119845136023ce5e774419e1c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 2b969d63acb4907b8f5e089f1da80d1f80ecfe7e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 e0c64dd425661f9e782c028d493a6d41eaf2fd99..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 19e47294b9a6197ca78d6519dc2ed4a44a08e209..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 b2f1b387d63f6ddd4a7658239f2f10e4dd818810..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 c5567e0b2d403ebbcd8a29d3b3005d1fe50364f5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button_pressed.png and /dev/null 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 c905697b83c38f3b28f034b1cffcb5616d086366..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view.png and /dev/null 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 67290346833d988d45c5e021665d931c97fd3c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_light.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 c905697b83c38f3b28f034b1cffcb5616d086366..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 67290346833d988d45c5e021665d931c97fd3c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 c905697b83c38f3b28f034b1cffcb5616d086366..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 67290346833d988d45c5e021665d931c97fd3c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 c905697b83c38f3b28f034b1cffcb5616d086366..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 67290346833d988d45c5e021665d931c97fd3c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 b2f1b387d63f6ddd4a7658239f2f10e4dd818810..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 c5567e0b2d403ebbcd8a29d3b3005d1fe50364f5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 b2f1b387d63f6ddd4a7658239f2f10e4dd818810..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 c5567e0b2d403ebbcd8a29d3b3005d1fe50364f5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 c905697b83c38f3b28f034b1cffcb5616d086366..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 67290346833d988d45c5e021665d931c97fd3c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 b2f1b387d63f6ddd4a7658239f2f10e4dd818810..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 c5567e0b2d403ebbcd8a29d3b3005d1fe50364f5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 b2f1b387d63f6ddd4a7658239f2f10e4dd818810..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 c5567e0b2d403ebbcd8a29d3b3005d1fe50364f5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 b2f1b387d63f6ddd4a7658239f2f10e4dd818810..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 c5567e0b2d403ebbcd8a29d3b3005d1fe50364f5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button_pressed.png and /dev/null 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 b2f1b387d63f6ddd4a7658239f2f10e4dd818810..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view.png and /dev/null 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 c5567e0b2d403ebbcd8a29d3b3005d1fe50364f5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 d9617e216abeb3484e1d88221723ff9f48f93ef6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch_checked.png and /dev/null 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 4ca2bd7f6514623d03abad0fa7b17de98cfd18ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 e0c64dd425661f9e782c028d493a6d41eaf2fd99..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 19e47294b9a6197ca78d6519dc2ed4a44a08e209..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 e0c64dd425661f9e782c028d493a6d41eaf2fd99..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 19e47294b9a6197ca78d6519dc2ed4a44a08e209..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button_pressed.png and /dev/null 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 e0c64dd425661f9e782c028d493a6d41eaf2fd99..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view.png and /dev/null 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 19e47294b9a6197ca78d6519dc2ed4a44a08e209..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 a762092fd22c9d119845136023ce5e774419e1c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 2b969d63acb4907b8f5e089f1da80d1f80ecfe7e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 e0c64dd425661f9e782c028d493a6d41eaf2fd99..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 19e47294b9a6197ca78d6519dc2ed4a44a08e209..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 c87a3b76b2a39fd7b26930daab22e8d1a773db64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 3749fc1d4e57daf9697d9389a854b06d4f4c8dbc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 af1fda5414c686fdbb418eadccadf48577182437..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/display_info.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_button_pressed.png and /dev/null 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 07df0bfab580e734de5b17b08e6b0f2c18dee6fb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_calendar_view.png and /dev/null 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 8c748be8121cb518bae9e24e9a1c3b2755d55316..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_color_red_light.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_button_pressed.png and /dev/null 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 16be64f1396b9e1389a91e18ca80ebe6e107e77b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view.png and /dev/null 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 8ff351e9b0a45147ab7bcbd56abd8451dc87bb06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 16be64f1396b9e1389a91e18ca80ebe6e107e77b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 8ff351e9b0a45147ab7bcbd56abd8451dc87bb06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 07df0bfab580e734de5b17b08e6b0f2c18dee6fb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 8c748be8121cb518bae9e24e9a1c3b2755d55316..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 07df0bfab580e734de5b17b08e6b0f2c18dee6fb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 8c748be8121cb518bae9e24e9a1c3b2755d55316..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 07df0bfab580e734de5b17b08e6b0f2c18dee6fb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 8c748be8121cb518bae9e24e9a1c3b2755d55316..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 07df0bfab580e734de5b17b08e6b0f2c18dee6fb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 8c748be8121cb518bae9e24e9a1c3b2755d55316..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button_pressed.png and /dev/null 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 a34a4179147396716d58b311e649f0c62a79ae59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view.png and /dev/null 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 6abd851576e98428973b72d6b3110966470254d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_button_pressed.png and /dev/null 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 a34a4179147396716d58b311e649f0c62a79ae59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view.png and /dev/null 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 6abd851576e98428973b72d6b3110966470254d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_light.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 a34a4179147396716d58b311e649f0c62a79ae59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 6abd851576e98428973b72d6b3110966470254d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button_pressed.png and /dev/null 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 c056720facafe9197d3a66d24407bea7c38a2f37..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view.png and /dev/null 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 c73a6bb4497ba77ce00a0e76f3eb6c99bd3f51c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 c056720facafe9197d3a66d24407bea7c38a2f37..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 c73a6bb4497ba77ce00a0e76f3eb6c99bd3f51c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 a34a4179147396716d58b311e649f0c62a79ae59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 6abd851576e98428973b72d6b3110966470254d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 a34a4179147396716d58b311e649f0c62a79ae59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 6abd851576e98428973b72d6b3110966470254d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 a34a4179147396716d58b311e649f0c62a79ae59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 6abd851576e98428973b72d6b3110966470254d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 a34a4179147396716d58b311e649f0c62a79ae59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 6abd851576e98428973b72d6b3110966470254d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 a34a4179147396716d58b311e649f0c62a79ae59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 6abd851576e98428973b72d6b3110966470254d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button_pressed.png and /dev/null 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 a34a4179147396716d58b311e649f0c62a79ae59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view.png and /dev/null 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 6abd851576e98428973b72d6b3110966470254d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 e5feeb862f49914c1f8fd105361f7b908fea2ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_switch_checked.png and /dev/null 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 91bf8cbf7b2a8ef43bb14bb0a60aacc901f086fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button_pressed.png and /dev/null 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 07df0bfab580e734de5b17b08e6b0f2c18dee6fb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view.png and /dev/null 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 8c748be8121cb518bae9e24e9a1c3b2755d55316..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_button_pressed.png and /dev/null 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 07df0bfab580e734de5b17b08e6b0f2c18dee6fb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view.png and /dev/null 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 8c748be8121cb518bae9e24e9a1c3b2755d55316..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button_pressed.png and /dev/null 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 07df0bfab580e734de5b17b08e6b0f2c18dee6fb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view.png and /dev/null 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 8c748be8121cb518bae9e24e9a1c3b2755d55316..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 07df0bfab580e734de5b17b08e6b0f2c18dee6fb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 8c748be8121cb518bae9e24e9a1c3b2755d55316..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 ca76a706a045a720ef32b1b5bb1a422a32bc7da7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch_checked.png and /dev/null 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 4b1f5a54597053f2811aadfd3d0000c50fffee6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 4378b1456000190abf97e27bfeceeb5a9321517c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/display_info.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_button_pressed.png and /dev/null 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 a02020154e794db549167336f5251a2191d5c1b1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_calendar_view.png and /dev/null 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 6ec7b61fc78118ce85ab48eb82baec06a9451100..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_color_red_light.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_button_pressed.png and /dev/null 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 a02020154e794db549167336f5251a2191d5c1b1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view.png and /dev/null 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 6ec7b61fc78118ce85ab48eb82baec06a9451100..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 a02020154e794db549167336f5251a2191d5c1b1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 6ec7b61fc78118ce85ab48eb82baec06a9451100..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 a02020154e794db549167336f5251a2191d5c1b1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 6ec7b61fc78118ce85ab48eb82baec06a9451100..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_button_pressed.png and /dev/null 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 2bcd3249c57ecda43116d30fb1a6d5ce7d002a3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view.png and /dev/null 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 1826249ba4c1592771882ab64ba3a9dd56cd184c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_color_red_light.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 2bcd3249c57ecda43116d30fb1a6d5ce7d002a3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 1826249ba4c1592771882ab64ba3a9dd56cd184c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_button_pressed.png and /dev/null 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 2bcd3249c57ecda43116d30fb1a6d5ce7d002a3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view.png and /dev/null 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 1826249ba4c1592771882ab64ba3a9dd56cd184c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 2bcd3249c57ecda43116d30fb1a6d5ce7d002a3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 1826249ba4c1592771882ab64ba3a9dd56cd184c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 2bcd3249c57ecda43116d30fb1a6d5ce7d002a3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 1826249ba4c1592771882ab64ba3a9dd56cd184c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 4194f1370bf73a3ced9fa2adba686c2b3b49bdcd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_switch_checked.png and /dev/null 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 f4fd415217acaa137e6ba5fc03a776a5222e6ff4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_light_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_panel_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button_pressed.png and /dev/null 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 a02020154e794db549167336f5251a2191d5c1b1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view.png and /dev/null 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 6ec7b61fc78118ce85ab48eb82baec06a9451100..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 06ec15bd580bb7342f5ffe1575eb03ef8b36ebe2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch_checked.png and /dev/null 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 8de9698d7982b92e5c6856bef93dae3389c1ae55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 d23bbc090a864b87374744825ac24fd34f087c2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/display_info.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_light.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_light.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 1e61b19599bcd889acfbec1f6ec5982b2bd49bf9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/display_info.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_red_light.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_red_light.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 4f187dd71899c12de45b14c43f957d0ce385b5b9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/display_info.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_light.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_light.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 4581f5162fe6d6b165363fed74e342d3192c0035..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch_checked.png and /dev/null 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 04a04b91894fee9c7bf373921c381defbff28311..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 ad3ab259c33a1879294005ba44b73af881b81db3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch_checked.png and /dev/null 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 c340bf17a193a3821b17d0fb1151ef047c9926f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 123440e2affffb22d55c14a00a7fc1648427136e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/display_info.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_light.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_light.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_edittext.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 120ef2de4b87285afc7cd02484419bc16a929c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button.png and /dev/null 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 f1d2f00d7fbcc92e7653ab5f22fc3c2044142ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button_pressed.png and /dev/null 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 3cc4f13809cebcd6eb091078b55e53ff36900ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view.png and /dev/null 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 283759d5439d8b0d93dfefc1ef271a40d16520c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 46158a7964831700715b545da2c49a2bb93d7bb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox.png and /dev/null 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 a3cee2b96f8bfcafad4b7790b6519d4aa0bd496b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 4ad45cd31350b59c663d88b80e013a5e60c9fbea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_light.png and /dev/null 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 4356dd0c496ed90e2acb8a059c0c1d3a85a0ec70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar.png and /dev/null 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 b7cbdbd2f536aeeec07bb6217b300c15ebcf868e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 37d0d309355d938c73b7ac94f18bf1a85bd99e04..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 c2edee4b79a52948560bf36c7ecac73e3f85c90f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_small.png and /dev/null 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 f1f332e4fff7959532bff95a1e571322de73dec4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button.png and /dev/null 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 d411647ba4fa58cfaa07631ba4a04bd98d2b53db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button_checked.png and /dev/null 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 ddeb73fa61057c3935cda660b6f13fd0f31d0cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 f9d28672e5df8b85b2fdff8e4f146ffb62d7beda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_vertical.png and /dev/null 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 38678ea71476821aff480145e42689f7f8baa36b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0.png and /dev/null 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 af3bfa99564a20deb4d7685bc73a938b773f0b43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 cfbdd9c500a122acb91b6f0ba0d3f7efedd0f0a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5.png and /dev/null 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 bc9edd3316efa219cd42381ded5b6d3051e756aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 7c3f1dd69d0bb712b410d7a63e0c4b60a46423be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5.png and /dev/null 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 b12dcb3da5d7beb27fc16a0a9c9025c4be40149d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 12c8e8b1174ed230f1403c5af85f190041f969e6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview.png and /dev/null 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 c1e7e6f609bf6f5123e0fec170926bc4b4333bae..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query.png and /dev/null 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 6cf34aa326e340f632514e398c46c92609ecf671..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query_hint.png and /dev/null 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 1c34052dc6d58018d7cb888ccfbad6a2a3021df6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_100.png and /dev/null 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 8668f5b245fee77d8ddc7052bb6231f2ff0f4667..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_50.png and /dev/null 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 25fe82d062ccf8e55c3162f5c9cea6606eccd7ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_spinner.png and /dev/null 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 c3ce216c593622ae719274d73123818bf776f5eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch.png and /dev/null 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 768f9d705ad05e125eedc6f31e9adb1399d9bbd4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch_checked.png and /dev/null 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 bfbe5cbf891315dbfae927b35c065fd7f0f5b710..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_tabhost.png and /dev/null 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 3fdcc5101843ead0fa90fe0022a9c359884c269f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_textview.png and /dev/null 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 aba4738a4b3839d31ee3184566d90a7fdf3505c0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_timepicker.png and /dev/null 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 1aee387e74585c098b7c8bdbec2f8efbcf1b3dd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button.png and /dev/null 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 5251995854205079665fe10c3d58f8cf05068462..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button_checked.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_edittext.png and /dev/null 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 8f6c7f0803786502cd6ea1f58e1eed9ce25a173b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 c1c07a0cdca348396f14478b58a78b3a1db635e2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 47c4eb5318a094a1e549408a7f588e273522be4c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 7971e45e8ef9311216adbb37d51c9f6ae80c3660..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 57efda223592444b98c718bbc704c5f29a65cdee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 ba0162d5329092c3fe89e03b1d8aeee52b2754e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 7cc4e09cab82c1c7d86dc31982d788d86dc52630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 27d18309c040c19610c142121b4997896a924818..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 214f78a835b8035a304162b51207162950e5ee92..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 014897e366124efbf330b46b8e59194b02009981..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 802edcbe7cb464fa7ff8a4af17e8cd846f9ed87e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 b0ba8b0b25d36a2766a80129c39d81460b2a67b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 80dc2a6a9e7c2143d3de63299aeae23a4e2460fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 cd1bdcd59cee677d550fc7ff1c7e4e52e46ad955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 e7d201dd6b93b048671e2bb2d5aa9f3189decac3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 9ed22c7be134faf46ab3f46b62fe9ab94a0d08fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 52d11a02d89d56a9d3cdae072f2c8452eb6c6407..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 369d7b465a977c7ee28e1d82207992fecca78cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 41e958c7ed1a7f8a3818a55c7441e9cc9dab0d3c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar.png and /dev/null 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 cff0e831782c58dab3fb2e7fb95e511718f3b30e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 45a2cb76dcd63e25104cf9b855d90d86e8c4dd4f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 38779151d91863386aa3164008e3a6064a0e2677..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 0fd63d218de38c73d9ced3dd9d11c9c81f8b3f82..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1a270f9d993500aed6bfa7ae247a4a9d71963c97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 872251dcc07fd2ca8cda4861c1ed10302ffddab0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button.png and /dev/null 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 e5e70a841ba9c1fc8f5e7974fd24806ad3eb478e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 49ee8cf3747047dec87a72660722e3e7d3436bd6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 4a13324d985c62a8a98b35481e07dd7e674be9fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 93c2d915555be170010ac865b82eef88e0834641..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 d2d6022e4c602b248e09c7fce29310735584e3d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 c40708e1ca2bf3f0c3d1df061c3bfc5bec0ba03c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 b6114277577d61cb6cafdd99957d56867fc3929e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 9887fdef1a49e530145ad3651425f4bb8e84eea1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 e56be1fa28222fe7bf0d6f6a83af24a08d123210..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 8a89a0f03b587315499a699ca4173d18a772ecbf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview.png and /dev/null 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 d3091f256c03537a0ce40d1d2e5dbe1fa7048bdd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query.png and /dev/null 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 74dc880c501d7b6646111875eb236a4e17e6d1f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 b35f83c32dfc8a79d901a14485121c5aa79c0d1a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 0873321db0ad1f582febaea0adb342d361800864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 494147b6934bca4db290769706e0b4f0e8e09eb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 d9c4985e001063314b1fecaa8f93b4fb32c55896..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_spinner.png and /dev/null 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 16dd7a426d37a34d21cead426bc4f6e783a6bf87..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch.png and /dev/null 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 a61e41f20535416d6b1113699425f937ba5cf435..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch_checked.png and /dev/null 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 a890104f227728e49262b4609ef68bd6a4ea225e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_tabhost.png and /dev/null 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 764363ae5efa69c44ce8a1df83b84d0f914afa4b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_textview.png and /dev/null 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 aaf273a1345b4c9f1f4c7b67533746f47fe1f0c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_timepicker.png and /dev/null 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 0c02047fe49425265a0dc383fe9da8cd6d6e5eeb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button.png and /dev/null 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 d48f7149905a40efc5e84623b36cdb72b2632be5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 7b8a0adb2323148814f454b41dd0810d6bb08989..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/display_info.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_light.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_light.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 e285898cc1c62d5f3a6fc150eba82edc82ed9597..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/display_info.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_light.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_light.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 af4eaaa8fffe526c32f715b4b763111646e26346..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/display_info.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_light.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 92b9f862ae6b864ed8c0249f851da93aaa99cd22..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_light.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 995af6735b73ffd42f36de1a1d48ad4b393f159f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/display_info.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_light.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_light.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 52664fe50370852e300354dad2b141c01204fa5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/display_info.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_light.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_light.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 d992c25967d2eef4e03d3552f06a701064bc5b19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/display_info.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_light.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_light.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 4d9d8105e9f15b18e181c3d434eeee130eea30c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/display_info.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_red_light.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_red_light.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_edittext.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 0a39b42062030a897de6fae50b76211ac4d4d6c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_button.png and /dev/null 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 aa9a944dcba662281920edb9a4e283d5319173d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_button_pressed.png and /dev/null 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 2fddda5e9902ae04fba063a04dd6ae1d1d747c9d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_calendar_view.png and /dev/null 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 5e7cb31b6aa6047b8fea5898e0fe1d968155f5e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 73df7851b206f7c27b449a106ce4a6a96709cd28..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_checkbox.png and /dev/null 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 a7c2f00663622b6748ac2545c3743a8910220f74..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_checkbox_checked.png and /dev/null 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 c2a8438ff7b61fe6834455d72a4074d9786134a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_red_light.png and /dev/null 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 c65471fb921693526b745e546ad719e8665484e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar.png and /dev/null 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 c9914b255a491f2d2ce6e8bf176b58aebdf3b562..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 240efaaf7913512d6e0e38957ded10e4c995afe5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 58623c11820b9060c0a4e227d8a94e3149f9807c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_small.png and /dev/null 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 cd3d665c7886822822b1bcb89413e0c68317238f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radio_button.png and /dev/null 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 a99129630307b85318818d35bf9152def60246ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radio_button_checked.png and /dev/null 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 e733888670a9d982cd7c9e3ad0c9563863614c47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radiogroup_horizontal.png and /dev/null 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 bda6c44edf627a75f2ee7f9dd9033d144bd8257a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radiogroup_vertical.png and /dev/null 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 fadcafcf7c36bb0062171f85c475dad4a88217f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_0.png and /dev/null 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 a0f86dff22734c85c3c673c66441822b83c373a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 1303bffc2a7563b0596472584d1c4272e4f5348b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_2point5.png and /dev/null 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 83568e03b9e8ad6851789b956012e2bb4ce9858a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 bbb2752f308ba11f3a8bd6b4440edf6f487ce27f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_5.png and /dev/null 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 c1945643525e0311a5e230389a16c4f3a66fb5e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 9524996da270ba67cd0ec0b2519cccc155d36439..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview.png and /dev/null 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 228a171f7430f02fd0aeea4840b9f3e91f616fc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview_query.png and /dev/null 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 0ed1e3d0e62f5fe2fc4c0d10921a7fb35fb87a7a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview_query_hint.png and /dev/null 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 f758a260ce268ba4132b148dc30000ecd2741ec2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_0.png and /dev/null 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 fdc8fa1c562f854971facd95c5a39726c901301d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_100.png and /dev/null 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 d19d3c9c13a8a060cf2ffa6a6e9d3c05e6ab4dce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_50.png and /dev/null 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 352cf99e384c5e6167f6f2276086bc94dd0643bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_spinner.png and /dev/null 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 0b3bfbdc8e2465db29ef40ec3216005b900cded5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_switch.png and /dev/null 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 a31eb9603862739e15c4783e18143fcc65a0c478..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_switch_checked.png and /dev/null 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 5de1403bff7b3f92fdbb4b4fb2795999835ee382..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_tabhost.png and /dev/null 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 95ffc3d9b2c9ea2aaea2225357c8d756e6778be0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_textview.png and /dev/null 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 dabec38add4c7d226ff979a6b76071bc01e40371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_timepicker.png and /dev/null 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 2e2f91a2ba643ff53820929064e2896f115fc8f9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_toggle_button.png and /dev/null 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 d207e9634b1018cd19e9a3893f361a86456a4d76..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_toggle_button_checked.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_edittext.png and /dev/null 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 b5df6e271966a9d1115825bdb1a2d8ae208a3c7f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 238e5a3cea54d3947c6cf92cad290e96f4f8896c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 23d8c0d04b2a518a9528d2beee58267fe74c7baf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 bcf6ae2eaeaf0312fc3d597a9884727f05bbe10e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 0dcebcb4905adb8a38f03225e1469776ec470301..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 2bf815f9797d5102180559701ff8334919ddef0c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 3ba89f238a9d69f98a1b0e27b4af75268f4e2cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 d38592587efb6308bb1cd0917e4b34646c4cc6cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 7e7957d02e1fa8de4255a9cab062961bd5fa0380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 5bda5463539d789b955ab9bd98130972b59b75e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 be9384bccd9518d334d3a581c7ae4277d027fdd2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 6b1d2da082059fcd82c553008a9c68bb08f61b29..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 a0eb467ebba4ff3ec187c14ebd2dc07398e192ef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 ac66b3f93743acc65c1af2f37a86315c01dce9f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 148d887ebe2f1a67868d6cb2a36f8a3576688a19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 a7b3a43060ad75a469b80214282837d8eda9af30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 734ab7025268810d03e5a13de27d84a85376ded6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 07a56b33914559ed1c477b5f610cca4cc80da67e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 06fec8fbb4f6b5cf7b3ff7d64aedf60ddb0cc77f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar.png and /dev/null 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 a02768d3f979e9e7858a75f8894397980aecb41c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 af1e76832aa459972cafaaf11524a6bff6ca66ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 a7399edc7870d382d9ffbfb2bd8817b9f05744a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 fe29e1d7a3e6307f80b9eec621b8da30eb9668f1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_large.png and /dev/null 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 28c0a402a776856b1fe874407b2b2533c9599d5e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_small.png and /dev/null 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 0030f98ff2530915dcf7cc9473d6261144afbcaa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radio_button.png and /dev/null 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 33b190c847a007a067937b71a46287b758415e25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 9db92b7b6f9fb08331e028fef89f70e06262ed0f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 50e7a34912d2e3ad014a56c69417082a8aff69c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 eef73c95a0cfb893f37b9ea4d2ce4f468893f038..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 278013768334c6bcabdb4154ef43e788d6e3ee19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 8adee447da5b4670229c95bbba8397373427587a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4eadba841ee2f63e4d18a526cb29407dd5d65e06..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 564261347ae8cc7499090f3c0f004295dec3df88..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 133c375d3f3b84a5b362268bc2042c02c5572175..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 d1bb1a51ddb5f381d2eb8b78de73f31d67e72533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview.png and /dev/null 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 6326c78f9bdc43c34e00823a685c4563b4e65864..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview_query.png and /dev/null 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 97db02b629d5aba6c7b20c19569ead7218b71e3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 2cddf441fb005b49b3c10c48dae8fd89b99584c3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_0.png and /dev/null 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 f30829c12930f4ed666b9274d348ba3170305560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_100.png and /dev/null 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 38f68c47a4c61dc2cc354dd40f53434c3c711f0b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_50.png and /dev/null 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 cee3fe99f1d693fad5dd15001392ac8fcac9b156..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_spinner.png and /dev/null 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 726ca2749c092cca0bff485b20809378c9ff4c2b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_switch.png and /dev/null 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 4b255244e31cab5ce0e8cdd4384f9ec6e7e46289..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_switch_checked.png and /dev/null 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 3632d1c7ad22183651ba226c0dd5f56e07a43f08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_tabhost.png and /dev/null 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 8b891741f0bd5468ef959b1e8b206537c25b6315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_textview.png and /dev/null 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 3c22b8fc5a6650c94f703e017d3d0bb79eef74d8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_timepicker.png and /dev/null 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 4dda9d9be7233c850527d2f6214c8827fe141a30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_toggle_button.png and /dev/null 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 2c5a42feb48e0bc929d84dee34f4a36e7d374902..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 b875d76f4b94878765f49582856a1c26b99403be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/display_info.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_red_light.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 a02020154e794db549167336f5251a2191d5c1b1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 6ec7b61fc78118ce85ab48eb82baec06a9451100..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_red_light.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 2bcd3249c57ecda43116d30fb1a6d5ce7d002a3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 1826249ba4c1592771882ab64ba3a9dd56cd184c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_edittext.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e214cee79f005f03f3b0155c0818a11905cc342e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_button.png and /dev/null 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 e5f2ba6edf86c67db61a0c76f170ab8a97522da6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_button_pressed.png and /dev/null 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 da8c25be6a676a9f85b9911845b36f56ccb8a9af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view.png and /dev/null 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 7a623571849fae7c82d2f4af9782d058756e4871..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 eae8da790a9af3ea13d8981fbdbc2c177492bd6e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_checkbox.png and /dev/null 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 17fdb74fa58bb550981b918e01160f721618fd93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 0c1041b2324f0d8fd51f3bb2c97b4cac8fee8e6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_red_light.png and /dev/null 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 3e9e9ca9ac59978fc92d5ce1b7704221e92c67a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar.png and /dev/null 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 47c6e79c96ab6dc16400b725a2e34f12d45ca448..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 fb869367fcfec7a32c8489a50894272c9a8228f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 7fd1e0a6ef3d393f54b1c94f24ac103d2b0a18c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_small.png and /dev/null 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 3b7524b556cc19796ce8bb25a8e9906dfc431ef9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radio_button.png and /dev/null 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 9a935b42aa7924498ee8a2139ace86c6fa6cad7b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radio_button_checked.png and /dev/null 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 bdf9513d587690e250d6f4ecc73837a93e03598b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 4f49944b64393217bda98ab5a8517baa0732295e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radiogroup_vertical.png and /dev/null 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 da469f06df688a9aab755017f763e69fb87a2c84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_0.png and /dev/null 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 2c2628c5c58124190a7e2752d2d1fe22e0b0933c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 98aa3acadc3c3502f41c6d1ed00b2e28ac374249..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_2point5.png and /dev/null 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 71eeb644520182d5940fb8c6c69c72e43dc24337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 718f20af34d2b21a8a85a35333477c5ab25c84b4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_5.png and /dev/null 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 18170edff2f72f4650e50e8f24ebab7d2b41f7bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 5a307589a10a717f510a630d0174d704cc95fb91..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview.png and /dev/null 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 d86e402cf0c1009770e34c9412aea2cdb4b9f1a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview_query.png and /dev/null 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 8879712f5c5f68b29213518969d0d145cd805e84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview_query_hint.png and /dev/null 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 15c004ccbdef535cab05a9ac5dc7c0482d849b12..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_100.png and /dev/null 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 bd9518b8765d9123fd3811b64eaca21e8979f610..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_50.png and /dev/null 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 d7cc92e540095e2487f748d9819ffdf15901f307..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_spinner.png and /dev/null 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 fd0375685a2d4d4fa34106ad2c6160d6dd06b1af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_switch.png and /dev/null 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 997f86546424f9fb9589faa453bc9b54452a013d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_switch_checked.png and /dev/null 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 90972e93a5b0e06969ddcbd6a9d0379c5b485878..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_tabhost.png and /dev/null 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 b1278e069a9a1978b48775fd41de53a004aa1d86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_textview.png and /dev/null 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 c8a1b493e5c852739cc4ca60f1a2e405c82fa187..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_timepicker.png and /dev/null 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 a9da98d4aa4327565ffa313d2788687d9c88311b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_toggle_button.png and /dev/null 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 da47a75744cd054620bde4264111af0364649cdb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_toggle_button_checked.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_edittext.png and /dev/null 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 e331f1fd0cab9f417f6ba245bdef23514dbbef6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 6645b40ac3d3edc810679eb6591aeb861474388b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 6ba961c96df0c51dfe721f9ee49a7fee7e196790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 a8bc8b6a24299d68be51e8ee149578520a9f3501..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 77f58472589848eb2de00e0b3dbfd6de430662c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 a52e05b392e618c566e790a6412d6c2a1a0c4e34..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 4d6797eec8bc015344ebb103ba88f928f3052875..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 685089cef947e8895de751e7f0df546535284177..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 6b9789b32f60ac6a4af4ed64d512e726eacfd479..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 c7beb5c17bc52a202fded99d4ea2f7d8dde5cbcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 a98995d598a07505b5898dc07f3db37982527363..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 52c8fa541d6b4a65adf8a585128d0cba1c1acf55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 0e364b2059fb46291ad363968457d3b1ba48f6a7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 9e31f16b59365f34e7ceda14bad3efb280753f47..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 5a1c489f587b2cbc23fa6dc979e3480bb3d0c638..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 9e84dffad802e70a24b5a07656db533e7e727494..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 b2792a3c0a69ebe16648137fe17e448da5525129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 6fabb7e3b9f7f6065fa31ad5f58b23628931e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 d027b03bf2725080a03a1e3865351ba111133ec1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar.png and /dev/null 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 5c53ebdc8d6072208a338f1a94b7c5d5e33675bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 80fff1c03137a775693aa760b91fd9bd938123b0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 2de6b3af5df76ba2e0eb59f9503d4a94cde1f29b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 50301a4c396fa5852b15beb8a51a1f8aa4ea852c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1240e6a156d89e0b990dd63292becff52139f265..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 d9901815efc952373fc2e3814f7e31705590987f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radio_button.png and /dev/null 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 b356dc080d01bc288af929ff7162cf124f5bc7cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 9a4c21eb2ff966702f6968035f607efb5937c55b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 c932a4114971fa0306939c4da01facb57f1058ff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 e49fd300d1359636b5a2cfdf5b1d360cc9eeeca8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 e3e558c3877374b92e503c81926f7ac7a3caae46..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 258b68ed1ec7bcd4cc75adb1b9c39b0a59dadd38..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4de733d1f0bf1261a3adf05193a464d7b182b1d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 196b634f3036eb35c972ffd526a19aed53881d09..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 c6786e1ac2d2de439797f514687b182b6f168b8b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 d4ccda722aa3a0b5745e59ca52d9fda96b37d526..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview.png and /dev/null 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 595813ae2295a78d43807bdb72b0cdaa8fa0f463..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview_query.png and /dev/null 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 efcb758c11b89814bfb407f28b042b17b51a059f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 7163ee5ec685766f230480488b0d9a95987ab6a2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 1f898c88e4fe0a4c6d00cd2d3ac0636435553823..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 d1c57a43199b58163495068f925440e359913423..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 10b44bba3d7f0e56ca310b09cc97895bb14fff26..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_spinner.png and /dev/null 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 e38748c422aac04a1a2f8b3d300a682a7513f52b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_switch.png and /dev/null 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 5a0da92892b6ae2a7ddbc3e26e8184e732b27eef..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_switch_checked.png and /dev/null 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 9f4f12112120824172fb6a748f9140f7527e7c90..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_tabhost.png and /dev/null 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 b6c7fd900bcd37313026e079f90eb89e5df7d2c5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_textview.png and /dev/null 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 d68dea8bae2f5eb9108aded9dee1d3fcdf6c209d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_timepicker.png and /dev/null 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 1e0cc69f0a5a7b16a2ba929c610878e0dc807564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_toggle_button.png and /dev/null 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 a2c84fd0b8f9ca993845cb4f86aec90898103030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 6db0c613f2f7ae02e8fe095612c4f219a82d3954..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/display_info.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_light.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_light.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 40c9572f0ae3c5e8ab22eae0cae656b615fac3df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch_checked.png and /dev/null 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 0009bfe06d4f5bb5f97b94b69576fe503d75a92a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 b389e1ae23a7bbf11f9fde4d7925bcf1f887f71d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch_checked.png and /dev/null 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 09ff374fee5474b23ab1ff458223a632caeefe64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 0ebb8c75b4aea4b95e5d683810e90c65dd98abdf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/display_info.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_red_light.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button_pressed.png and /dev/null 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 a92f31e53a54fd01486e26103b4f57e6515121ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view.png and /dev/null 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 97df30c275aa2dbab3264c96ff588499f17c750b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 a92f31e53a54fd01486e26103b4f57e6515121ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 a92f31e53a54fd01486e26103b4f57e6515121ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 97df30c275aa2dbab3264c96ff588499f17c750b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 a92f31e53a54fd01486e26103b4f57e6515121ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 97df30c275aa2dbab3264c96ff588499f17c750b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 a92f31e53a54fd01486e26103b4f57e6515121ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 97df30c275aa2dbab3264c96ff588499f17c750b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 a92f31e53a54fd01486e26103b4f57e6515121ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 97df30c275aa2dbab3264c96ff588499f17c750b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 216378d7953035f978f1c79e2bdb545bce874de1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 fa7d2781f7cf35606a8b48c98c83666dd85043db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_button_pressed.png and /dev/null 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 216378d7953035f978f1c79e2bdb545bce874de1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view.png and /dev/null 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 fa7d2781f7cf35606a8b48c98c83666dd85043db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_red_light.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 216378d7953035f978f1c79e2bdb545bce874de1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 fa7d2781f7cf35606a8b48c98c83666dd85043db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 216378d7953035f978f1c79e2bdb545bce874de1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 fa7d2781f7cf35606a8b48c98c83666dd85043db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 216378d7953035f978f1c79e2bdb545bce874de1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 216378d7953035f978f1c79e2bdb545bce874de1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 fa7d2781f7cf35606a8b48c98c83666dd85043db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 216378d7953035f978f1c79e2bdb545bce874de1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 fa7d2781f7cf35606a8b48c98c83666dd85043db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 216378d7953035f978f1c79e2bdb545bce874de1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 fa7d2781f7cf35606a8b48c98c83666dd85043db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 216378d7953035f978f1c79e2bdb545bce874de1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 fa7d2781f7cf35606a8b48c98c83666dd85043db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 216378d7953035f978f1c79e2bdb545bce874de1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 fa7d2781f7cf35606a8b48c98c83666dd85043db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 228b1fbf0ba8a04afd3b013c950c8147f23165dc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_switch_checked.png and /dev/null 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 7e44f5ee8fb02866e247d20eec49bbe1d25d8844..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 a92f31e53a54fd01486e26103b4f57e6515121ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 97df30c275aa2dbab3264c96ff588499f17c750b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 a92f31e53a54fd01486e26103b4f57e6515121ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button_pressed.png and /dev/null 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 a92f31e53a54fd01486e26103b4f57e6515121ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view.png and /dev/null 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 97df30c275aa2dbab3264c96ff588499f17c750b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 a92f31e53a54fd01486e26103b4f57e6515121ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 14df18c6de28f35de14739777a655f14e86ac532..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 de89d29af02cc06ac394546aba0811863b1ff804..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 b212de130a76ca2aa8b2ccf9df9e220f6ced39bd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/display_info.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_light.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_light.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button_pressed.png and /dev/null 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 c4ba05ff3a32cd3e9f12dd46f25de1e589d51b6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view.png and /dev/null 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 578207a55eb3f7713c8a3c856ec6c614363ca79d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 f53d9a423da818398fed7c0236dedb5ed1a54d20..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch_checked.png and /dev/null 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 ce1aae55e3d3a9d5c3a6c9247c06addbfc2f4806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 da5c76451043ec8367512387fb34a6beb2c7ad2c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 460cc2a90dbc6e679b761903e2faf9ed9bf9744d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 5325490e87ca91f935320263fda18fbfc8ef5af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 2638a650bf42048ad855b6ea04b61dc16a588546..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 ffbc97a213eb96b9dc46e96bad408fec4e76c94d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/display_info.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_light.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_light.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button_pressed.png and /dev/null 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 61506491a942485d1f5801198cb032b3a24925fd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view.png and /dev/null 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 9871099e7af74e0b46eb1f516593a8ec1891e719..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 efe1e47fafaf4da1d46bacee5319bcf35d92d870..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch_checked.png and /dev/null 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 a85de8f72e1f30816bb35eae8f44b17fd12def24..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 9fb414f521e41e4ad2764c44d1428de57d07039f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 92257a10108df956020376dee0d38c83670285b2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 cc0e7f88406ed63a3f92bc0095863943264e1505..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 348df8b373248a9d2d70f58272117f18b63e0806..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 d9825fb740cfaef82ce107b731acfa5c083cd12d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/display_info.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_button_pressed.png and /dev/null 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 aa13d2cc4cce3e917d6035f918beeeceb526ab6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view.png and /dev/null 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 2a9d640372f48f7c40d94084120bf1d757e633ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_color_red_light.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button_pressed.png and /dev/null 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 aa13d2cc4cce3e917d6035f918beeeceb526ab6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view.png and /dev/null 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 2a9d640372f48f7c40d94084120bf1d757e633ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 aa13d2cc4cce3e917d6035f918beeeceb526ab6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 2a9d640372f48f7c40d94084120bf1d757e633ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 aa13d2cc4cce3e917d6035f918beeeceb526ab6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 2a9d640372f48f7c40d94084120bf1d757e633ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_button_pressed.png and /dev/null 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 3c61854dd8b8290fd5d167125f99a29a609353df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view.png and /dev/null 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 b00bbf901882fb6b22e16f9a8c009987fd5c7237..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_light.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 3c61854dd8b8290fd5d167125f99a29a609353df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 b00bbf901882fb6b22e16f9a8c009987fd5c7237..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_button_pressed.png and /dev/null 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 3c61854dd8b8290fd5d167125f99a29a609353df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view.png and /dev/null 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 b00bbf901882fb6b22e16f9a8c009987fd5c7237..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 3c61854dd8b8290fd5d167125f99a29a609353df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 b00bbf901882fb6b22e16f9a8c009987fd5c7237..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 3c61854dd8b8290fd5d167125f99a29a609353df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 b00bbf901882fb6b22e16f9a8c009987fd5c7237..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_edittext.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 fc85bd51a9d09eea9bf5a61c980696b438524b33..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_button.png and /dev/null 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 892a57a64ab395f258dfcb32044aefb7b92726d2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_button_pressed.png and /dev/null 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 98af6844be793fd00b092f0dc83587fe20fb338c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view.png and /dev/null 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 d1f9e7ba83d8980c2be710216289e29408b6753e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 e70e4306946e9e22dee363e72e3875a90f423db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_checkbox.png and /dev/null 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 eb76f466d4c2e1976a17563ad51a4de20128e023..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 cc128be3ceda34addc46969f86f5c259a4e0cf77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_light.png and /dev/null 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 da28bef3bc742466926193399f5df2b1b4c8988e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar.png and /dev/null 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 641fd75faca14f0de465505603c2c5c016d2386c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 2d1840a9252a832f66f6b39151c7cdab7cf72cf2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 5cf63e009bd52d4915a1efe54a042552fe8399db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_small.png and /dev/null 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 a2e0c6b77d5fd45b169e8009550909ad83bed57d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_radio_button.png and /dev/null 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 7be487d5fc094520a2b71a19d2264b8093b99525..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_radio_button_checked.png and /dev/null 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 d67e21837c34e717eccb4897e45294a772957971..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 fac7beca1a2d269235362838db0a0c6f253bc02f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_radiogroup_vertical.png and /dev/null 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 ea48dc28839a24cd2e2b001e92d4137feb493dde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_0.png and /dev/null 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 b998d58e8178619ca5af4de736df5cf5a294c88e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 bfcaf36a1bb35c059eb343e87e9eadf3b205f53a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_2point5.png and /dev/null 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 8caa5ede477218652e5a1da54212d3fdd20ccbc3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 c70bb564c0ab7d605d62b76c570b03eba1952fdc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_5.png and /dev/null 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 c14a28a395b2e2428eb4279a461ed9c4b9e74ee2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 29d37de2800369d1f3ae449a4ec28c9355d05db8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview.png and /dev/null 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 3e99084950fc4658988a84a79fbe0182d2caf0ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview_query.png and /dev/null 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 d0d9fc03df72f6caf9032769b6e3b669a5391322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview_query_hint.png and /dev/null 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 ca7bcec65f1a5ed58f0ab3d780f2750d0de701f3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_100.png and /dev/null 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 a126a90e68a349993d46ae5b8362a48b32aceb19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_50.png and /dev/null 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 dfcdab215d03a4e28ab0d8c8c76e72f3bf745933..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_spinner.png and /dev/null 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 2836a5b42490c96072155ab0e75faef34051da3e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_switch.png and /dev/null 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 d013b5b02601f13ee9f8fe1bbd1aaec8296888fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_switch_checked.png and /dev/null 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 9e2a7ef9f54b5e10ed9d1f0443389036c6b5ca8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_tabhost.png and /dev/null 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 963085d108856f890a7e4f94f3a0cbd91c420c1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_textview.png and /dev/null 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 4cd814b4075c42bbc0777bfc87d80981fa348790..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_timepicker.png and /dev/null 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 e21690433bb6b039a1bfcad062c400654768cc4a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_toggle_button.png and /dev/null 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 37ad8f4b41fa64f9989af6928fb046dc4f44ac0a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_light_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_panel_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_toggle_button_checked.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button_pressed.png and /dev/null 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 aa13d2cc4cce3e917d6035f918beeeceb526ab6f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view.png and /dev/null 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 2a9d640372f48f7c40d94084120bf1d757e633ec..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_edittext.png and /dev/null 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 4da578607f0e1d029ba4061c0bebecd9111679d6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 e174e0f3a313cf4dd900decbbb09d078a84da338..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 b561fafc5219480ebbd83512e1fc0e6464e436d4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 9836bf027d7b3e8a5f4f604ec32caac3e0875aad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 f853e3f09b70ab58d086be4a04cd0a1c305b530c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 30fd872f1f147912012bb749dea1e13046ada8db..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 5de7ea35982b4f9421a362ed63bdb7d08aa4aa32..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 e268c1eecc9d98ce0f71894a644223ca5e268c00..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 39c37657fd1643159ce39f8c5ac5199c6810a67a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 a16db1693a20b9db6b13f5b9635d66f012d7870d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 5ff0c2fd895c264cbe9e71b47f01b4c5b24e1cda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 1780c486d080e1c94015e5843371683014952633..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 d5d124b32919eb943d9ecfde5f2c305dd7732fed..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 963e74f19158e4fbf82d6bb06d2d0c72c4c80a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 b3ca9f177614651f71885acc95381e1b2dd5c955..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 eb6e985ab87182c03c56197a209ba9c6b9d50fb8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 bea305b353bedc8ef92231ff49ca9be98c7011ba..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 b9c74daed0544d71a0cb3f6e2b812c69fc1a0e03..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 a5ca94f9a7620f388275aa0a5e9a073b97dcfede..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar.png and /dev/null 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 c12eb255321d8c2de4a40fe31e5614908f5a76fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 bd06021887b30092daa7244d6a2d42af20b86eb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7b975583421880240de12267f0193e9236c5a3c1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 7482a47a89f5427d8418107f11f0c57ffd333aa3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 e454f601a0b222c6cc64a39808780a0a85a008bb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 7dcf8f1978f43b0199a2a17255927ab05756df56..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radio_button.png and /dev/null 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 25fe3ddbd449f63a305cd6aeb4dc42886b0626ea..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 fdffb54e0c28eb2b3642f479d31d551779a3bd89..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 af64c01e7633536c245a64b930b2f457d3fbdd43..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 3d9b8016356fb69d04758d54d5a04cad7f43d950..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 caf89b11610dfbe03ffd34ea39129e3679f6c378..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 4836514655919ec5274227c2af05d534b773c548..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 f2cf574196f8a1f32e0d79947a2bbfccd6980b08..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 0a1a74db96b54738271674440e8b5fe08961318e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 5313e71eba98f2353d693364ce0c99ee4d7f6101..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 fbf4ca07a2d50ba3cacf516dbe5d15041f3105e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview.png and /dev/null 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 795760fe9def884fe7f7045f74925105704b27cc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview_query.png and /dev/null 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 fe7451be960a0f05138d815177dbdde147b671eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 41d8c132821a061d6d41fd50b116507d9bf35af7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 6a6f9067cce1ef1b6d9c019072d1fef939bd3915..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 41e6f5c2398b53b901c3e1e369efb2c87f348630..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 be412a276d4c012ced5539d8bc7c358c2ae008e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_spinner.png and /dev/null 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 2316f8b46b9496bfc8af121142abe2ab1f3626de..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch.png and /dev/null 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 a48e3cebfd29601854ff8801bd504fc0a913ad8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch_checked.png and /dev/null 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 a6c26ccca2ea951e9ee386c58e7706b15faa1961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_tabhost.png and /dev/null 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 6a4072111c5b8a8cdd3b18e752cb0b49621a5f1e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_textview.png and /dev/null 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 01016e8d6f90cd651550e051661478b1c8afbcd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_timepicker.png and /dev/null 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 272b12170b28e42a00d509872c47a93c869202a0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_toggle_button.png and /dev/null 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 44a7dc68acd910ffeef9df75643b70eb2747d60b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 585af2fd769f0148daa27c37ebf2e1ee9b29c7aa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/display_info.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_button_pressed.png and /dev/null 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 8c306ba85120bc2eceff05db5320f38cf9c7958b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view.png and /dev/null 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 d8477b84cefff00725d3772e295dd151b2285036..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_color_red_light.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button_pressed.png and /dev/null 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 8c306ba85120bc2eceff05db5320f38cf9c7958b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view.png and /dev/null 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 d8477b84cefff00725d3772e295dd151b2285036..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 8c306ba85120bc2eceff05db5320f38cf9c7958b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 d8477b84cefff00725d3772e295dd151b2285036..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 8c306ba85120bc2eceff05db5320f38cf9c7958b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 d8477b84cefff00725d3772e295dd151b2285036..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_button_pressed.png and /dev/null 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 4a6fd2fe11222ee6560cceffe48f3d01e1317e60..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view.png and /dev/null 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 d11de12e68f17af23e57eda2cf620eb96c255e8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_light.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 4a6fd2fe11222ee6560cceffe48f3d01e1317e60..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 d11de12e68f17af23e57eda2cf620eb96c255e8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 4a6fd2fe11222ee6560cceffe48f3d01e1317e60..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 d11de12e68f17af23e57eda2cf620eb96c255e8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 4a6fd2fe11222ee6560cceffe48f3d01e1317e60..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 d11de12e68f17af23e57eda2cf620eb96c255e8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 4a6fd2fe11222ee6560cceffe48f3d01e1317e60..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 d11de12e68f17af23e57eda2cf620eb96c255e8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 c2006f9e7a7ae916bbab3fee7b16cbd9f199e64f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button.png and /dev/null 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 c4c4caee8164fc747aeafa12e0f6db99a1c01250..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button_pressed.png and /dev/null 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 7d9cc1279b240237b279601e1d0d46d138246e57..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view.png and /dev/null 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 5b5f6fc79c628a635ffa0914d70bad7af50d4349..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 617f42d569e6cef0bfe3aea9d12d30a66f82b2cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox.png and /dev/null 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 fa1d1a35072934b0976f656f6f4d800e01693692..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 4c66b096a8f69451064f66a3135b51e7a1b27897..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_light.png and /dev/null 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 e24fc712c0c77c2fda03efc75d6f8c27c67e20bf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar.png and /dev/null 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 1464e423bad28d0d92aa440ec04a1a2ff1e8847a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 80d9c462776006196704742122e6406ef18c88c9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 aaa84e282346d6fc3ad57fa801365ca8923482e0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_small.png and /dev/null 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 b75525b4dee21fc731a62efe4ab3419f0fa2dd77..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button.png and /dev/null 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 1d43e1fc42b1c4c094ba90b2f460b90017e292be..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button_checked.png and /dev/null 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 11ea86b1659f6f84ef068a3d29eabf559cd30789..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 f15070235543c3a3736e3b8988a8c680d481015c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 2f7f54f114ac0b873b5550d5f3e761a4c7636c8a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0.png and /dev/null 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 27ed503fe073ffdd830694148b144b51a79a0eda..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 94f43b2cbd12a62d2bcd6c3a3d8bd8c0a2e1d1c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 0331d92cc0a90a2f52bfc7d25135be512122b18a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 026b058b8630c004d62b8891ea26347109188703..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5.png and /dev/null 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 f0a714b1686e839a1bc9bc9e55a911dababb3122..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 43c9f5cdf302a7e2c1215a54f7b2c4cd656e5edf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview.png and /dev/null 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 0f86ea00203e7e70a55b57b64167246e436194fe..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query.png and /dev/null 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 56febfca77e1b0a17f13de148f6405c7c11a56d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query_hint.png and /dev/null 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 f45c12e9ce368a3b3e0cc16b6dc85869f7b4551b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png and /dev/null 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 88b4ec9f588a14d98bb98bf0f01500ab516181cb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png and /dev/null 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 363dadc4afe81bb2123c46cbe392e0404b3f1c5b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_spinner.png and /dev/null 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 bc815051f75ed7067701ca34e2ed1983dfb95fb7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png and /dev/null 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 f4f49e7ed44092868b198a5eb86c85a63dee58ac..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png and /dev/null 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 0131a09edb8148336f7759e7e4d75108c95e563f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_tabhost.png and /dev/null 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 4c7ccd0beaa7585263086258ff3a2ffa9539841c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_textview.png and /dev/null 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 6653013542ba4b841a3d2ed6a536898a35e71b07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png and /dev/null 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 20048fe5337e9929a74ab804313f9818573705a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button.png and /dev/null 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 c0beb3e210b24e96b3662efeaabcf29012414916..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button_checked.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 8c306ba85120bc2eceff05db5320f38cf9c7958b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 d8477b84cefff00725d3772e295dd151b2285036..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_edittext.png and /dev/null 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 c7c235691d3caa2bc3062a53c0cd7a16505de957..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 37157746d2bbb12180d9fe05c799ad72aae3f87f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 1d109f2f635f393a2b1a4847518a862ed29fc315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 6c575debb1affb79c357ebfaf1f3168671c00348..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 029a5a4f1f8cedb4dfd1d394bfebe76b799beed5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 96556b701825023b2abd06282ac1232ce4cf35e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 b38da0f82e268052436f50ed3541443e8e3296cf..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 1f73a7371e1e32a56693d0ea6f5dce1bd12722f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 9370aa858bceeafca7b32a8c80805b8ecceff0df..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 6ca5182dd873099dfc29e60d110412477feed6ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 e98d1ec464c05041adbee6d60e5e45a0425cf3a1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 a40262b5a78e79cde35829d223531619813b95f2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 3061ca21b7429b3b502c8e00c55b5c9ce7d03fe3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 54b59fad2c75d423ffdc1b84ac56e60f85de3145..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 89f1198693567884bae37b1bd86197b34f7df7f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 f46b083dc60733989c7a393ead784335d5c93573..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 0945dc9108fc1b0aa24acea716725e92c76ed89b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b41717c40144e80d447e6e5a5242b379f33cc55..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 8bb3363b22563dff5e1d2d79e1f1dbd585ea93e7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar.png and /dev/null 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 736ce45accde621eb3394c42d47a9fcd5ac14215..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 3f32757cb4269719d68c4f29b5786082f4c62a17..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 b86fc682d9897992569323dac15e538b96290496..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 98344af617cc1f83b7be31e161075a8c504faff7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 88ef97714d69053389d75ec189a6bcc6f5df3a18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 6f080b95a0768767767f29c32ed7f4ce8bcebf1d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button.png and /dev/null 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 333092d2e10f5be65dd863706cf2ca637e876403..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 8da6bcc24b9a06e08a08f4ae1ef29df5e8d085af..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 33b87d6779e74d603ac8ce629aafc4d587581322..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 223177b45898977d78de8d476d7935af519ce6c4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a26c94fb65c24bbc4f19883d05285e3721307873..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 a2e096744042041bd83659d9274bb6e80e6d260e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 da7cd839431ede16223465585f3e8daf3101975a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 60abbb32dcddbd44f175a5b81d6336ffe22fbaa5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 c841bca7e0ed8ebc0c781253d1914f9a9066a315..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 73c611fa76545934edbb35f56b198d0fe1312221..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview.png and /dev/null 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 1ed1cb70e3a8bf4f221c7a0d43eeb8d4f63c4658..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 a2922153ae7822959dcdbf5a0fdad2bacdc458e5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 04dd1a60895fc4448bb19eb500dedc67dbccaecd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 b14235b26e6fe751976bc48fb96662da64c6746a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 f9eea9999f138d950fc53d418f6402e53c0ec886..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 ba426d1f5fbfd26786db6aa88b11157b5606fa65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_spinner.png and /dev/null 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 10aab75fdc19cdd08de267036a7207995816ee97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png and /dev/null 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 307a97b08a3eff227f21af50b391db417b5872c8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 a07d0c6724ce923ce4baa88edaa73504ffd8bb93..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_tabhost.png and /dev/null 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 20056f0f0359bcfac97f6bfb81d8d59d287d89eb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_textview.png and /dev/null 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 396028ddd0100b8774d6e02071f41e8ab5a254ee..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png and /dev/null 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 0658feaa6edf5d314adb36c83fafdd91b3f71380..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 6de89406a8b45deb2aea6678f485274ddd175cb9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 255c28fa0e5dc9ce0d78cabd51a4214cd125d01b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/display_info.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_light.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 66cfc1c6854a7b457fe31c9bf9bf932aa367ae8c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 b29d7efbb39f49d6a740db9145c29b1c5cde7118..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_light.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 9eeea75d31e3438db4cc5b8aab81227de6d7bd30..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 c42356aec8a4fddc1eb620265de428baab162a6a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 e0840c02e27b85ca14beff110c45c101ae666826..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 150f2533f5cfa536fa7b8aac01b3d3929958816f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 e1ab413779802e5f023353b0440c5247165bac7c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button.png and /dev/null 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 972deb3d2afed67758a7fbe8b8de46949b164427..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button_pressed.png and /dev/null 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 a794685b2416c7dfc970795b5d617e9da2b24aa0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view.png and /dev/null 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 42c6b85f8d87d008134638f522c45b2a03cb1926..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 ccb263ef24545945b0eefb4c9cf379f0d60dbf6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox.png and /dev/null 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 c28064ce4569ef3d6d258b788c75b5b6199c9d65..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 7c2e552ec6a756654ccd19bc248a4dd38f40b45a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_light.png and /dev/null 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 4a8f9781dc6299328e029b99fb39cb11a196cd3d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar.png and /dev/null 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 b8f3128194612caae014f14555dedab69aba5620..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 93cf3428e21a14ed2bc6106384c1519d8fb6d04f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 cfee7445fe49bea3818ee141f234e05689ab0972..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_small.png and /dev/null 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 df537210c5bdd8f9191c976e390af00785caff96..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button.png and /dev/null 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 bff175e190731cb4963cee4baa72b5f61aaba65e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button_checked.png and /dev/null 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 25466cdbd8e42d4e44b4da8db8f8a9c712984560..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 63dab83a21cacd031de2b34efef6aa8203717030..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 d33f643f95223ad1ad8b7da97a45cecd21b7d74f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0.png and /dev/null 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 3e0ebe039c534ed7b4b9019a5ea5db4806bfecc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 733b7ecebc5027e4a0c2e50db62d3a6313f77a86..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 4b8611c37e2aacbedde9634968383afecea3f064..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 5cb08f92e77bef420039fc31715eaf0faee3ae0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5.png and /dev/null 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 50155c78b34d96de9c87dac8cc4edfc68ecbb371..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 f51fe27a01238400009c2a344cbf9114e5535dbb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview.png and /dev/null 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 d3f64b0fb7c1fbd59303e7e0fcf34eacf76365f8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query.png and /dev/null 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 e085750ecae2839daa4ed00edcb2a86a15424c5f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query_hint.png and /dev/null 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 bb24e4d9d14645f4e26644e3a2f96b741b936cff..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_100.png and /dev/null 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 f9b0c0f9bd89f534faa5463ebaf3d8503211481b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_50.png and /dev/null 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 0563e58f9ba5d3f60f891624b43bd778a3326e97..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_spinner.png and /dev/null 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 dfe9d0bfda17d7ceec540e7e51bdaa52e6f6ec6c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch.png and /dev/null 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 0a917bf66e74cbb2a3e9fc3b64fe2d2b1a8d8066..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch_checked.png and /dev/null 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 fa8d49db7543221b5113605e64cf71d2c9ecf952..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_tabhost.png and /dev/null 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 601c5239d4b6282b1b5bbcf917c6eed4bb1d2d5c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_textview.png and /dev/null 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 571e196c556b6bb083a64714673fcda5a3e4fc6d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_timepicker.png and /dev/null 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 7b4093ad8e59feade228d14e19e51fe3b600b57e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button.png and /dev/null 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 e3241454a1cf11301a09e6bd8f3fafe042a87129..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 af0fcd6c945237354c1a2f22a3e2b983bb2ed66a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 0baf7ba8958536a8aaa971071895084966ecc8ad..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button_checked.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_edittext.png and /dev/null 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 8d07174dff327f5e6461c6f961e22d241ce23819..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 7c5fd4585f216a00cd7dd8fd761e2bea64b55f64..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 7edeab513e43146953f872655b04379e89be220b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 98cbd99bf8bce896a526a1f7b81e3f29b35e9ceb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 8f9a8321b2b782f916971e4e1134c92dfb8b1d1c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 12543517542361c740ae9ed10c5e912ca6215004..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 0306efadada0c08d4092e9545095252dfb9a2cfd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 861a88bf5c2bafc405eca2e0ef08f0855258e44c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 2980ae02803ae7fcf48dc3ca3a4b11072bf44044..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 b7b55853af09bf51bbd71a0073c3bf5785278ce5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 1052ec9004df8f885f7b2c3737e798611a11bc0e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 5ae21be595d2897e6f62be980bdf931651460782..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 8a58e2e24ca04d22f10ee970469d8a06d975fbd0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 e48d8770119328cfadf0af821683aeef1be617f6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 c10e14c2aa7df58aa7e6c8e3aca90b325703fbab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 6c8ac68c13d3e95949c36990aa19fb97d1b831b8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 37e12b8e230ec81d3a3e92f4fe1ebc545fd2f38e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 4b8d0c24f24f37e57bcfc102b1cb0e4b75249b45..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 e12aa546f206ed2720ffb9cf546d44a0b65bb58a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar.png and /dev/null 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 d7233103dbbaf2298bd4d9494aacc428d569bc16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 14379f469a80fa96cc835f5d70be78ea1a1e5bb2..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 7775d3482cbcf65c201eb208103317e647069564..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 c8ae5aaea666926d0b2874cd81e68ab4fb561987..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 bf0654937698df9837e3455ef15036c3cdf8eeb0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 4ec280cce2d71197f1e188b1c3808d220e67c6ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button.png and /dev/null 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 21e98a4a4d2bd5374323e83d11c5278946086f78..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 4957a5b1159eba069abd84f4e5cba0f40a88b5d0..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 545ddebc3c44323fb268c1c835ee921b93b4ecd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 a4dc230353e483b4adcdb716eb924c192134545e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a1529104448d255efdc199dfcab708aeb6abb01e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 39e7c2bff0418ad7b4b9a54a868a1039b808724e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 c0c1c2076ddd6ef75479a3f54836d58be3bd170b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 624efc669a5f5e198a4f02c59078cbc362ed81bc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 fbf55cf0ae9bbee019a000fc6c8ce4def893bccc..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 19b348483ab36601657200bab7a716e0b35c4824..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview.png and /dev/null 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 91330027b8fd88ea69c2b48ac31a7a3911db710c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 122c1fea5f2f1e5d5b05c883a5429afd146d38e3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 c37bf560a451050c18af6276cd5e2e74df7c926d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 fd40bb9b7d3b855aed031f4b4c8c83fba023888a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 663f6e607228a1de87e9d6369ef2f7f4188e067f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 4bfa4e88afcf4f2270d0360d6d4e0d836ccb67d1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_spinner.png and /dev/null 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 b3eaa6c3e4ecfce42268ed579ccda89351cf10ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch.png and /dev/null 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 b617b6b4c0b200f2438d8283f4ae08ec9b629ed3..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 b7de37f10516b19e2563834eb3fc2c40c796ea16..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_tabhost.png and /dev/null 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 bb71cb29cb317b5b90efd0d5e27c51b4a0654cb6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_textview.png and /dev/null 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 eefde4f14b1c2e00d0ff650b17001171155772ce..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_timepicker.png and /dev/null 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 858cb4c9d9f9cf0797a11c1089441ca2b3600108..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 584c38863542e9c1335db3b3c3436d51edf75f2d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null 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 095382c396ff67f3d13880f89a3d717b354f2704..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/display_info.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_button_pressed.png and /dev/null 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 652a5357f10dca8862314c65df6979e8d4b6e961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view.png and /dev/null 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 0af39ab852d4efbc439d272057c414cee6428cb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_light.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button_pressed.png and /dev/null 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 652a5357f10dca8862314c65df6979e8d4b6e961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view.png and /dev/null 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 0af39ab852d4efbc439d272057c414cee6428cb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button_pressed.png and /dev/null 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 652a5357f10dca8862314c65df6979e8d4b6e961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view.png and /dev/null 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 0af39ab852d4efbc439d272057c414cee6428cb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button_pressed.png and /dev/null 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 652a5357f10dca8862314c65df6979e8d4b6e961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view.png and /dev/null 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 0af39ab852d4efbc439d272057c414cee6428cb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button_pressed.png and /dev/null 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 d372de61611a1d602359084077fc566a5d3c9199..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view.png and /dev/null 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 ff7036f0b7387907054f9a8715d62864fa6f8cd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_light.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button_pressed.png and /dev/null 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 d372de61611a1d602359084077fc566a5d3c9199..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view.png and /dev/null 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 ff7036f0b7387907054f9a8715d62864fa6f8cd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button_pressed.png and /dev/null 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 d372de61611a1d602359084077fc566a5d3c9199..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view.png and /dev/null 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 ff7036f0b7387907054f9a8715d62864fa6f8cd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png and /dev/null 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 d372de61611a1d602359084077fc566a5d3c9199..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png and /dev/null 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 ff7036f0b7387907054f9a8715d62864fa6f8cd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png and /dev/null 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 d372de61611a1d602359084077fc566a5d3c9199..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png and /dev/null 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 ff7036f0b7387907054f9a8715d62864fa6f8cd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_edittext.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png and /dev/null 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 656d8ee42674f9e5438b6881e3d42c1d78ff5ce4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button.png and /dev/null 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 72bfd64b4524f0ef1850e4cc16251df91ab27882..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button_pressed.png and /dev/null 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 33c179722a47141ac9e7f537471c3fdafc7f114b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view.png and /dev/null 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 b5988474940f8764444d75fc8680f4ec051bd467..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view_feb.png and /dev/null 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 a7f68b6c48e8ea4a31b03b3146a0ebe5cde62c5a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox.png and /dev/null 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 80e46be4cd7c5fd8bb5e4b439a1efb6889e6825f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox_checked.png and /dev/null 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 df5472d13d56839eea619d0db677b06ea9d1932c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_light.png and /dev/null 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 c3922c97c7322664abb4b1fc087eb2d179a338e9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar.png and /dev/null 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 9313020373ddb698a5488a10ebc506bd31f32cde..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_0.png and /dev/null 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 485cc981c9d695bd9c7f9467ef10b0545142bd5d..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_100.png and /dev/null 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 fd0388fa4d5dff8a0e15ca7967b3e72296ee22f7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_small.png and /dev/null 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 2ae15704937410c26e6e0e971890cc82b6476856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button.png and /dev/null 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 59da2ac2628f32b965627243574c0ef62787cff8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button_checked.png and /dev/null 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 256f5939df5550475668b58176080428066a9ea5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_horizontal.png and /dev/null 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 60ef54c200ae4dba3ff4ca914c1114effcb288a4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_vertical.png and /dev/null 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 dd0780ac213afa95a6470deac1b15a4a9e32cab1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0.png and /dev/null 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 a0975186692fb606a5ed73b4018396bb229e20a6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0_pressed.png and /dev/null 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 9004c04649b2757ebbc3c52142acc7066754f60f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5.png and /dev/null 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 b62cc2099570443b7e7e8d30275798b967001606..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5_pressed.png and /dev/null 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 94889180295febb874d4575cb2f265efbfbc521e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5.png and /dev/null 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 f6dce8bc45941f0454a8bcc8a29ebab8d1bff2ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5_pressed.png and /dev/null 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 b457f333f95475853a6ea09f8f1a68bf35196e19..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview.png and /dev/null 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 aec055a522126b5dc3e205315c392ef45decdfa7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query.png and /dev/null 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 19ef7fb85574b3b252b2520c7b093e92297d3d10..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query_hint.png and /dev/null 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 eaf9ecf0d407228b0721166350ea7ed0104738cd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_100.png and /dev/null 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 79a51119a125fbeab45e13b60f831218b0953f39..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_50.png and /dev/null 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 b0ecb4b56fc1a348e8e38431f555cbdb99f39bc4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_spinner.png and /dev/null 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 10814b7ea02478db4b74b042a477fc48b7e6ab25..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch.png and /dev/null 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 4f2f234a88f4e3f79eb638c90246132a06edf412..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch_checked.png and /dev/null 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 d6002cfe00eb87ab7a9d0698d0fc497582341045..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_tabhost.png and /dev/null 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 8dcf3067583c8cee31354a8c69d5ae7c2cf25750..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_textview.png and /dev/null 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 1ccb1747d47f914c3b7b9258661d2c511b778337..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_timepicker.png and /dev/null 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 5228006c7175442c63728731a16ad5a351b17a50..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button.png and /dev/null 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 9d6acaed36a3b48c224dc503fda6ca8168ad6a42..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button_checked.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button_pressed.png and /dev/null 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 652a5357f10dca8862314c65df6979e8d4b6e961..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view.png and /dev/null 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 0af39ab852d4efbc439d272057c414cee6428cb1..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_edittext.png and /dev/null 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 9ad55ef8375cecef5cba79d9ac315c168ebef2e4..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button.png and /dev/null 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 81306f1489ca53fa248105d3a4f9cfa5cdb372e8..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png and /dev/null 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 130801433f5d65c85df033f68aec2741ef488dc6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png and /dev/null 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 d074d0217fc441071e244a64897bed6090ef6533..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png and /dev/null 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 53747faab88c35729ed3d67bab56fcb7d3a71493..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png and /dev/null 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 d6d40d219b5491db15ce90e42a6e21f9c540b856..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png and /dev/null 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 8760e6ca0f46dac043c47f9f75d9596da5caa331..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png and /dev/null 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 f32f0aba32fe568b242a76b01161a5706076794c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png and /dev/null 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 c3fdb3be0849a38855d5eaffe182f9f52dae18dd..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png and /dev/null 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 55db9cffec796a2b5cb4c7ce2f290bb59862ce59..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png and /dev/null 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 11f702d6eadfedde9f3972a131a7730b3e708d2a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png and /dev/null 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 aa20d880b302273e6adbd3cca32637980c80da84..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png and /dev/null 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 2201a9afcaad5419bdab5b50fb821f8c5494befb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png and /dev/null 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 36e97001efeca6d352962d4322a847d99d074159..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png and /dev/null 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 3aa65ad4fb2e66c3b587f4965a5e2558884c9f6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png and /dev/null 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 4efc0228597e331f5f6bf69220d79971268803fa..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png and /dev/null 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 843e4f8802970d8e275dc3ff3f2fcb8b8b00700e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png and /dev/null 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 6ef4633cff03f09ef2095e5e4e163373f75e024e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_edittext.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png and /dev/null 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 245ddd2ca95ad46806ac0095f352d94375771a15..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar.png and /dev/null 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 965dbd1ad068157a419b3f50dcbc248fe716cc8f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png and /dev/null 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 a166fda74296bfa59931997043e0adf067f060c6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png and /dev/null 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 8bd64d7bc3dab9949492b790d7957bf8945aa65c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png and /dev/null 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 5985c8126294e40fa41bf16e13a32fef243e4d6b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_large.png and /dev/null 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 1c738882aa4d8c2991d9e0188fdbb2d84f3f1549..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_small.png and /dev/null 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 fbdd345e55e749e3a9e94292985dbcd91ceaac18..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button.png and /dev/null 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 1b6c4bcd1fb98a577b52aada8856a8487240b7a9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button_checked.png and /dev/null 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 06e2e82efccd0c1cd6b35bf3c65e18cf2438d35a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png and /dev/null 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 51d5826dee755234c6ccadeecfb24d0b7ac3391a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_vertical.png and /dev/null 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 29e70c950e886c618da9205887ab1c335b2a9f3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0.png and /dev/null 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 a56b6fc49ded6faf8d10f2a633f476fb364a4bd5..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png and /dev/null 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 3c9c871d558e09924650b4790cd27b191b921a70..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5.png and /dev/null 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 4fed7890a080813d92b7dd1536feee665f977e3b..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png and /dev/null 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 a54d3b11429804aca4ee8331fab2b216f1e410ab..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5.png and /dev/null 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 3ca63be279f5e1d970f1cbd555d4c73de954b98a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png and /dev/null 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 22ee0dc6a653b25e490fd9c384fc1c5fc3cff33c..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview.png and /dev/null 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 f3579089561b3d3d8d5ab85692146a18148e5fcb..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query.png and /dev/null 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 d067f1c33f8cb8b9d0aec44b3048f1e9a6c31682..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query_hint.png and /dev/null 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 fa5d5c0ac28753f15462096d600c828e0a7caa07..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_0.png and /dev/null 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 5b3d7a4a608d5d8c91e9d46581d6e6317ecf484a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_100.png and /dev/null 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 fb091941510477303a230f3ddb130f989a6707d9..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_50.png and /dev/null 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 1791d39cf689e3e1ee1adefd3ba434cc633e94c7..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_spinner.png and /dev/null 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 9718fc074eed703521291027da0450be59b5d102..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch.png and /dev/null 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 4bc4b061538e051fcc2e12288062f9fd3586b44f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch_checked.png and /dev/null 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 3cac2d2cb0e57ef8a97933856f3ef8a4fa04ece6..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_tabhost.png and /dev/null 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 fcb761b70e535ef37a189c85cb1b6288da72550a..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_textview.png and /dev/null 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 ecf23ac11130b5c5b86835d002effac8df1f082e..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_timepicker.png and /dev/null 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 2eb2ffc83fd7f0157ced1a986a9b1c50f2f4ee3f..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button.png and /dev/null 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 5580a0cdc7c831aa5ab969b9ad42d84b873af002..0000000000000000000000000000000000000000 Binary files a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button_checked.png and /dev/null differ diff --git a/tests/tests/holo/res/layout/button.xml b/tests/tests/holo/res/layout/button.xml deleted file mode 100644 index ca9f542c85d0ab80c11fef927e17d775c02e413c..0000000000000000000000000000000000000000 --- a/tests/tests/holo/res/layout/button.xml +++ /dev/null @@ -1,20 +0,0 @@ - - -